/* ========================================
   GNTS Style Updates — Full Design System
   ======================================== */

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 48px 0 rgba(31, 38, 135, 0.15);
}

/* ========================================
   HEADER — Desktop Navigation
   ======================================== */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: transparent;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.5rem;
}

[data-theme="dark"] .header.scrolled {
    background: rgba(13, 13, 14, 0.6);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Compensate for fixed header */
.page-wrapper {
    padding-top: 4rem;
}

@media (max-width: 768px) {
    .page-wrapper {
        padding-top: 5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-icon {
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.header .logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: -0.05em;
    text-shadow: 0 0 10px rgba(168, 208, 240, 0.2);
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    color: var(--accent-light);
    transform: translateX(2px);
}

.footer-logo .logo-text {
    font-size: 2.2rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    opacity: 1;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.header-phone:hover {
    opacity: 1;
}

.header-phone svg {
    flex-shrink: 0;
}

.header-login-btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-login-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ========================================
   ROCK-SOLID MINIMALIST MENU (V5 FINAL)
   ======================================== */

body.menu-open {
    overflow: hidden !important;
    height: 100vh;
}

/* Cleanup header */
body.menu-open .header .logo,
body.menu-open .header .header-phone,
body.menu-open .header .header-login-btn,
body.menu-open .header .dark-mode-toggle,
body.menu-open .floating-phone,
body.menu-open .back-to-top {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Minimalist Hamburger Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 10001;
    position: relative;
}

.hamburger .line {
    width: 20px;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
}

.hamburger.active .line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .line:nth-child(2) { opacity: 0; }
.hamburger.active .line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* The Menu Overlay — Stable Left Aligned Layout */
/* The Menu Overlay — Stable Left Aligned Layout */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #f8f9fa !important; /* Force Site-Gray */
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15%; /* Rock-solid left alignment */
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out; /* Faster load */
}

[data-theme="dark"] .menu {
    background: #0d0d0f !important;
}

.menu.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-logo-standalone {
    margin-bottom: 3rem;
    opacity: 0.8;
}

.menu-logo-standalone svg {
    height: 40px;
    width: auto;
}

/* CLEAN LINKS */
.menu-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.6;
    white-space: nowrap;
    width: fit-content;
    transition: all 0.3s ease;
}

.menu a:hover,
.menu a.active-mobile {
    opacity: 1;
}

/* MINIMAL FOOTER — Aligned with links */
.menu-footer {
    margin-top: 5rem;
}

.menu-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.menu-contact-grid h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.5;
}

.menu-social-links { margin-top: 2rem; }
.menu-social-links a {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: var(--text-color);
    opacity: 0.3;
}

.menu-social-links a:hover { opacity: 1; }

@media (max-width: 1024px) {
    .hamburger { display: flex; }
    .menu-container { display: flex; pointer-events: none; } /* Inherit pointer-events: none */
    .desktop-nav, .header-phone, .header-login-btn { display: none; }
}

/* ========================================
   CTA Button
   ======================================== */

.cta-button {
    display: inline-block;
    background: var(--text-color);
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    margin-top: 2rem;
    font-size: 1rem;
    cursor: pointer;
}

[data-theme="dark"] .cta-button {
    background: var(--accent-light);
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: #000;
    color: #fff;
}

[data-theme="dark"] .cta-button:hover {
    background: #fff;
    color: #000;
}

.cta-button.cta-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    box-shadow: none;
}

[data-theme="dark"] .cta-button.cta-outline {
    border-color: var(--accent-light);
    color: var(--accent-light);
}

.cta-button.cta-outline:hover {
    background: var(--text-color);
    color: white;
}

[data-theme="dark"] .cta-button.cta-outline:hover {
    background: var(--accent-light);
    color: white;
}

/* ========================================
   HERO Section
   ======================================== */

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
    min-height: 80vh;
}

.hero-content {
    text-align: left !important;
    max-width: 100% !important;
}

.mega-text {
    font-size: clamp(2.5rem, 8vw, 6rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
}

.hero-description {
    margin: 1.5rem 0 0 0;
    max-width: 600px;
}

.hero-image-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ========================================
   STATS Section
   ======================================== */

.stats-section {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.7;
    font-weight: 400;
}

/* ========================================
   Section Title (reusable)
   ======================================== */

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
}

/* ========================================
   WHY US Section
   ======================================== */

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-us-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.why-us-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.why-us-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.why-us-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.5;
    margin: 0;
}

.why-us-quote {
    margin: 1.4rem 0 0;
    padding: 0.75rem 1rem 0.75rem 1.1rem;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, #a8d0f0, #c8b6f5) 1;
    font-size: 0.88rem;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-color);
    opacity: 0.55;
    text-align: left;
    line-height: 1.5;
    transition: opacity 0.3s ease;
}

.why-us-card:hover .why-us-quote {
    opacity: 0.85;
}

/* ========================================
   HOW IT WORKS Section
   ======================================== */

.how-it-works {
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    padding: 2.5rem 2rem;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.06;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.step-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   CTA Banner
   ======================================== */

.cta-banner {
    text-align: center;
    padding: 5rem 2rem;
    border-radius: 32px;
    background: rgba(0, 0, 0, 0.03);
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    margin: 0 0 1rem 0;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin: 0 0 2rem 0;
}

.cta-banner .cta-button {
    margin-top: 0;
}

/* ========================================
   SECTION SPACING
   ======================================== */

.section-padding {
    padding: 6rem 0;
}

/* ========================================
   TESTIMONIALS Section
   ======================================== */

.testimonial-section {
    padding-top: 4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ========================================
   FOOTER Enhanced
   ======================================== */

/* ========================================
   FOOTER Integrated Design
   ======================================== */

.footer {
    padding: 2rem 0;
    margin-top: 6rem;
    background: transparent !important; /* override the old square gradient */
}

.footer-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 2.5rem 3rem 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

[data-theme="dark"] .footer-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    letter-spacing: -0.03em;
    color: var(--text-color);
}

.footer-brand p {
    opacity: 0.7;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

[data-theme="dark"] .social-icon {
    background: rgba(255,255,255,0.05);
}

.social-icon:hover {
    background: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.footer-contact .footer-heading,
.footer-nav .footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.4;
    margin: 0 0 1.5rem 0;
    font-weight: 800;
}

.footer-contact p {
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #25D366; /* Accent color for links */
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(255,255,255,0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.5;
}

.made-by-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.03);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

[data-theme="dark"] .made-by-tag {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.05);
}

.made-by-tag:hover {
    background: var(--text-color);
    color: var(--bg-color);
    transform: scale(1.05);
}

/* ========================================
   SCROLL REVEAL Animation
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   MAP Section (kontakt)
   ======================================== */

.map-container {
    margin-top: 3rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .header-login-btn {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-mockup-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        min-height: auto;
    }

    .glass-window.floating-card {
        position: static !important;
        transform: none !important;
        width: 90% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        order: 3;
        padding: 0.8rem 1.2rem !important;
        gap: 10px !important;
    }

    .glass-window.floating-card .card-icon {
        font-size: 1.2rem !important;
    }

    .glass-window.floating-card .card-text strong {
        font-size: 0.85rem !important;
    }

    .glass-window.floating-card .card-text span {
        font-size: 0.75rem !important;
    }

    .glass-window.main-window {
        order: 2;
        width: 100%;
        margin: 0 auto;
    }


    .hero-content {
        text-align: center !important;
        order: 1;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .main-window {
        transform: none !important;
        max-width: 100%;
    }

    .hero-mockup-wrapper {
        min-height: 300px;
    }

    .hero-image-container {
        order: 2;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer {
        text-align: center;
        padding-bottom: 6rem; /* Extra space for floating buttons & cookie banner */
    }

    .footer-socials {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .footer-nav .footer-links {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.8rem !important;
        margin-top: 1.5rem !important;
    }

    .hero-actions .cta-button {
        width: 100% !important;
        max-width: 280px;
        text-align: center;
        padding: 0.75rem 1.2rem !important;
        font-size: 0.85rem !important;
        border-radius: 12px !important;
    }

    .glass-btn {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    .header-phone span {
        display: none;
    }

    .mega-text {
        font-size: clamp(2rem, 11vw, 3.2rem) !important;
        line-height: 1.1 !important;
    }

    .section-padding {
        padding: 3rem 0;
    }

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

@media (max-width: 400px) {
    .mega-text {
        font-size: 2.2rem !important;
    }
    
    .floating-card {
        display: none; /* Keep it clean on tiny screens */
    }
}

/* ========================================
   DARK MODE
   ======================================== */

[data-theme="dark"] {
    --bg-color: #0d0d0d;
    --text-color: #e8e8e8;
    --gradient-start: #0d1117;
    --gradient-end: #161b22;
}

[data-theme="dark"] body {
    background: linear-gradient(120deg, var(--gradient-start), var(--gradient-end), var(--gradient-start));
    background-size: 300% 300%;
    animation: gradientMove 6s ease infinite;
    color: var(--text-color);
}

[data-theme="dark"] .glass-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .menu {
    background: rgba(13, 13, 13, 0.97);
}

[data-theme="dark"] .menu::before {
    background: rgba(13, 13, 13, 0.97);
}

[data-theme="dark"] .hamburger .line {
    background-color: var(--text-color);
}

[data-theme="dark"] .pricing-category {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .pricing-category th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

[data-theme="dark"] .pricing-category td {
    border-color: rgba(255, 255, 255, 0.06);
    color: var(--text-color);
}

[data-theme="dark"] .pricing-category th {
    border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .opinion {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .panel,
[data-theme="dark"] .repair-form,
[data-theme="dark"] .login-panel {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-color);
}

[data-theme="dark"] .disclaimer {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-color);
}

[data-theme="dark"] .instructions {
    background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .cta-banner {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .header-login-btn {
    background: var(--text-color);
    color: var(--bg-color);
}

[data-theme="dark"] .footer {
    border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.06);
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.dark-mode-toggle:hover {
    opacity: 1;
    background: rgba(128, 128, 128, 0.1);
}

/* ========================================
   ACTIVE NAV LINK
   ======================================== */

.desktop-nav a.active {
    opacity: 1;
    font-weight: 700;
}

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

.menu a.active-mobile {
    opacity: 1 !important;
    border-left: 3px solid var(--text-color);
    padding-left: 17px;
}

/* ========================================
   FLOATING PHONE BUTTON
   ======================================== */

.floating-phone {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 9999; /* Max priority */
    transition: all 0.3s ease;
    animation: phonePulse 2s ease-in-out infinite;
    text-decoration: none;
}

.floating-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes phonePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998; /* Just below phone button */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ========================================
   FAQ ACCORDION
   ======================================== */

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

[data-theme="dark"] .faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    margin: 0;
    opacity: 0.75;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
}

/* ========================================
   COOKIE CONSENT
   ======================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: var(--bg-color);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    flex: 1;
}

.cookie-content a {
    color: inherit;
    text-decoration: underline;
    opacity: 0.8;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background: var(--bg-color);
    color: var(--text-color);
}

.cookie-accept:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-decline {
    background: transparent;
    color: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   PAGE LOAD ANIMATION
   ======================================== */

@keyframes pageLoad {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    animation: pageLoad 0.5s ease-out;
}

/* ========================================
   404 PAGE
   ======================================== */

.page-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
.error-404 {
    text-align: center;
    padding: 8rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-404-number {
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 900;
    opacity: 0.06;
    line-height: 1;
    margin-bottom: -2rem;
}

/* ========================================
   WOW HERO EFFECTS
   ======================================== */
.relative-hero {
    position: relative;
    overflow: visible;
}

.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
    animation: blobBounce 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: rgba(37, 211, 102, 0.3);
    top: 5%;
    left: -5%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 150, 255, 0.3);
    bottom: -5%;
    right: 5%;
    animation-direction: alternate-reverse;
}

[data-theme="dark"] .blob-1 { background: rgba(37, 211, 102, 0.12); }
[data-theme="dark"] .blob-2 { background: rgba(0, 150, 255, 0.12); filter: blur(100px); }

@keyframes blobBounce {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.15); }
}

.badge-hero {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

[data-theme="dark"] .badge-hero {
    background: rgba(255, 255, 255, 0.05);
}

.gradient-text {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.glow-hover {
    position: relative;
    overflow: hidden;
}

.glow-hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.glow-hover:hover::after {
    opacity: 1;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-color) !important;
}

[data-theme="dark"] .glass-btn {
    background: rgba(0, 0, 0, 0.2) !important;
}

.glass-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
}

/* ========================================
   HERO CSS MOCKUP
   ======================================== */
.hero-mockup-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.glass-window {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

[data-theme="dark"] .glass-window {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.main-window {
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    text-align: left;
}

.main-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.window-header {
    background: rgba(0, 0, 0, 0.05);
    padding: 12px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .window-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-body {
    background: rgba(0, 0, 0, 0.03);
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

[data-theme="dark"] .window-body {
    background: rgba(0, 0, 0, 0.4);
}

.code-line { margin-bottom: 4px; }
.code-line span { color: #2563eb; font-weight: 600; }
[data-theme="dark"] .code-line span { color: #60a5fa; }
.indent { padding-left: 20px; }
.indent-2 { padding-left: 40px; }
.indent-3 { padding-left: 60px; }

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 0;
    right: 5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 0;
    left: 0;
    animation-delay: -3s;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}
.card-text span {
    font-size: 0.8rem;
    opacity: 0.7;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   PRICING & WEB PACKAGES
   ======================================== */

:root {
    --accent-light: #2563eb; /* Blue accent */
}

[data-theme="dark"] {
    --accent-light: #60a5fa;
}

.web-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0 5rem;
    align-items: stretch;
}

.web-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
    padding: 3.5rem 2rem !important;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: visible;
    text-align: center;
}

.web-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--accent-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.web-card.featured {
    border: 2px solid var(--accent-light);
    transform: scale(1.05);
    z-index: 2;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 45px rgba(37, 99, 235, 0.15);
}

[data-theme="dark"] .web-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .web-card.featured {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 45px rgba(96, 165, 250, 0.1);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-light);
    color: #fff;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.web-card-header {
    width: 100%;
    text-align: center;
    margin-bottom: 2.5rem;
}

.web-card-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    color: var(--text-color);
}

.price-tag {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: -0.04em;
}

.web-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1;
    text-align: left; /* Keep text left-aligned for readability */
    width: 100%;
    max-width: 250px; /* Constrain list for centering */
}

.web-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.4;
}

.web-features li svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

.web-card .cta-button {
    margin-top: auto;
    width: 100%;
    max-width: 280px; /* Standardize button width */
    text-align: center;
    padding: 1rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.repair-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.repair-services-grid .pricing-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .web-packages-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 0 1rem;
    }
    .web-card.featured {
        transform: scale(1);
    }
    .repair-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRICING CALCULATOR
   ======================================== */

.calculator-container {
    padding: 3.5rem !important;
    margin-bottom: 5rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: flex-start;
}

.calc-group {
    margin-bottom: 2.5rem;
}

.calc-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
}

.calc-select {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

[data-theme="dark"] .calc-select {
    background: rgba(0, 0, 0, 0.2);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.calc-check {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-check:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-light);
}

.calc-check input {
    width: 22px;
    height: 22px;
    accent-color: var(--accent-light);
    cursor: pointer;
}

.calc-check span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.calc-result-card {
    background: var(--accent-light);
    color: #fff;
    padding: 3.5rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.25);
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calc-result-header {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.total-amount {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.calc-note {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.calc-result-card .cta-button {
    background: #fff;
    color: var(--accent-light);
    width: 100%;
    max-width: 240px; /* Reduced to fit perfectly */
    margin: 0 !important;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calc-result-card .cta-button:hover {
    background: #f8f8f8;
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    .calc-result-card {
        position: static;
    }
}

/* ========================================
   WIZARD CONTACT FORM
   ======================================== */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: stretch;
    margin-bottom: 5rem;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-sidebar .info-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0 !important;
}

.contact-wizard {
    padding: 3.5rem !important;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
    position: relative;
    padding: 0 1.5rem;
}

.progress-step {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-color);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.progress-step span {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.5;
    white-space: nowrap;
    font-weight: 700;
}

.progress-step.active {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: #fff;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.35);
}

.progress-step.active span {
    opacity: 1;
    color: var(--accent-light);
    font-weight: 900;
}

.progress-line {
    position: absolute;
    top: 25px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.form-step {
    display: none;
    animation: slideUpWizard 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.service-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.service-option {
    cursor: pointer;
}

.service-option input {
    display: none;
}

.option-content {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 1rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-option input:checked + .option-content {
    background: rgba(37, 99, 235, 0.08);
    border-color: var(--accent-light);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-8px);
}

.option-content .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.2rem;
}

.option-content strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.option-content span {
    font-size: 0.8rem;
    opacity: 0.6;
    color: var(--text-color);
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

[data-theme="dark"] .input-group input,
[data-theme="dark"] .input-group textarea {
    background: rgba(0, 0, 0, 0.2);
}

.input-group textarea {
    min-height: 200px;
    resize: vertical;
}

.brief-info {
    font-size: 0.9rem;
    color: var(--accent-light);
    margin-top: 1rem;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-light);
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
}

.wizard-buttons .cta-button {
    flex: 1;
    margin-top: 0;
}

.contact-sidebar .info-card {
    padding: 2.5rem !important;
}

.mini-map {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes slideUpWizard {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .service-selector {
        grid-template-columns: 1fr;
    }
}

/* --- NOWY PANEL OPINII (LUKSUSOWY DESIGN) --- */
.opinion-form {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 3rem !important;
    border-radius: 32px !important;
    text-align: center;
}

.opinion-form label {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.9;
    letter-spacing: -0.02em;
}

.opinion-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    resize: none;
    box-sizing: border-box;
    text-align: center;
}

[data-theme="dark"] .opinion-form textarea {
    background: rgba(255, 255, 255, 0.05);
}

.opinion-form textarea:focus {
    background: white;
    border-color: var(--accent-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rating-container {
    margin-bottom: 2.5rem;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 12px;
    font-size: 2.8rem;
}

.rating-stars input { display: none; }

.rating-stars label {
    cursor: pointer;
    color: #ccc;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
    margin-bottom: 0;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #FFD700;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.opinion-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.opinion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1rem;
}

[data-theme="dark"] .opinion-header {
    border-bottom-color: rgba(255,255,255,0.05);
}

.opinion-header h3 {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.5;
    margin: 0;
    text-transform: lowercase;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.opinion-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    font-weight: 500;
}

.opinion-date {
    font-size: 0.8rem;
    opacity: 0.3;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 600px) {
    .opinion-form {
        padding: 2rem !important;
    }
    .rating-stars {
        font-size: 2rem;
    }
}

/* --- NOWA STRONA KONTAKTOWA (V2 MODERN) --- */
.contact-section {
    padding: 2rem 0 6rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.info-card {
    padding: 3rem !important;
    border-radius: 32px !important;
    margin-bottom: 2rem;
}

.info-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: var(--text-color);
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-item-link:hover {
    transform: translateX(10px);
    background: white;
    border-color: var(--accent-light);
}

.contact-item-link.no-hover:hover {
    transform: none;
}

.contact-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05);
    border-radius: 12px;
}

.contact-details span {
    display: block;
    font-size: 0.8rem;
    opacity: 0.5;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.contact-details strong {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Category Selector (Radio to Badges) */
.category-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.category-option input { display: none; }

.category-badge {
    display: inline-block;
    padding: 0.8rem 1.4rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme="dark"] .category-badge {
    background: rgba(255, 255, 255, 0.05);
}

.category-option input:checked + .category-badge {
    background: var(--text-color);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-box {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.instagram-button {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.modern-contact-form .input-group {
    margin-bottom: 2rem;
}

.modern-contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    opacity: 0.7;
    margin-left: 0.5rem;
}

.form-row.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.modern-contact-form input, 
.modern-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 18px;
    padding: 1.1rem 1.3rem;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

[data-theme="dark"] .modern-contact-form input,
[data-theme="dark"] .modern-contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255,255,255,0.08);
}

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

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    background: white;
    border-color: var(--accent-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

@keyframes bounceIn {
    from { opacity: 0; transform: scale(0.3); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .contact-container { grid-template-columns: 1fr; }
    .mini-map { height: 300px; margin-top: 1rem; }
}

@media (max-width: 600px) {
    .form-row.split { grid-template-columns: 1fr; gap: 1rem; }
}


 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       A S S E M B L Y   P A C K A G E S   ( F I X ) 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 . a s s e m b l y - p a c k a g e s   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         g a p :   1 . 5 r e m ; 
         m a x - w i d t h :   9 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
 } 
 
 . a s s e m b l y - i t e m   { 
         p a d d i n g :   2 r e m ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
         t r a n s i t i o n :   a l l   0 . 4 s   e a s e ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
 } 
 
 [ d a t a - t h e m e = \  
 d a r k \ ]   . a s s e m b l y - i t e m   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ; 
         b o r d e r - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
 } 
 
 . a s s e m b l y - i t e m : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e X ( 1 0 p x ) ; 
         b o r d e r - c o l o r :   v a r ( - - a c c e n t - l i g h t ) ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 [ d a t a - t h e m e = \ d a r k \ ]   . a s s e m b l y - i t e m : h o v e r   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 6 ) ; 
 } 
 
 . a s s e m b l y - i n f o   s t r o n g   { 
         d i s p l a y :   b l o c k ; 
         f o n t - s i z e :   1 . 2 r e m ; 
         f o n t - w e i g h t :   8 0 0 ; 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
         c o l o r :   v a r ( - - t e x t - c o l o r ) ; 
 } 
 
 . a s s e m b l y - i n f o   s t r o n g   s p a n   { 
         f o n t - w e i g h t :   5 0 0 ; 
         f o n t - s i z e :   0 . 9 5 r e m ; 
         o p a c i t y :   0 . 5 ; 
         m a r g i n - l e f t :   8 p x ; 
 } 
 
 . a s s e m b l y - i n f o   p   { 
         m a r g i n :   0 ; 
         f o n t - s i z e :   1 r e m ; 
         l i n e - h e i g h t :   1 . 6 ; 
         o p a c i t y :   0 . 8 ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . a s s e m b l y - i t e m   { 
                 p a d d i n g :   1 . 5 r e m ; 
         } 
         . a s s e m b l y - i t e m : h o v e r   { 
                 t r a n s f o r m :   n o n e ; 
         } 
         . a s s e m b l y - i n f o   s t r o n g   { 
                 f o n t - s i z e :   1 . 1 r e m ; 
         } 
         . a s s e m b l y - i n f o   s t r o n g   s p a n   { 
                 d i s p l a y :   b l o c k ; 
                 m a r g i n - l e f t :   0 ; 
                 m a r g i n - t o p :   2 p x ; 
         } 
 }  
 