:root {
    /* Default Theme: Dark (matching Dashboard) */
    --primary: #2d4a3e;
    /* Deep Forest Green */
    --accent: #d4a373;
    /* Sand / Tan */
    --bg: #0f1113;
    /* Deep Dark */
    --bg-alt: #16181a;
    /* Slightly lighter dark */
    --bg-card: #1a1c1e;
    /* Card Dark */
    --text: #fdfcfb;
    /* Warm White */
    --text-muted: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.1);
    --input-bg: rgba(255, 255, 255, 0.05);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
}

[data-theme="light"] {
    --bg: #fdfcfb;
    /* Warm Cream */
    --bg-alt: #f5f3ef;
    /* Soft Beige */
    --bg-card: #ffffff;
    --text: #1a1c1e;
    /* Charcoal */
    --text-muted: #64748b;
    --border: #e8e4de;
    --input-bg: rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 30px -10px rgba(45, 74, 62, 0.15);
}

[data-theme="light"] header {
    background: rgba(253, 252, 251, 0.9);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-links a {
    color: var(--text);
}

[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
}



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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    background-color: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 17, 19, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

/* Consolidated into top level overrides */



nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    color: inherit;
    letter-spacing: 1px;
}

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



.logo-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2002;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Animation for Hamburger X */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--accent);
    opacity: 1;
}


.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--bg) !important;
}


.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 100px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 74, 62, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    padding-right: 2rem;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--text);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text);
    opacity: 0.7;
    max-width: 550px;
    margin-bottom: 3rem;
}


.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    border: 1px solid #dbeafe;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #64748b;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    width: fit-content;
    border: 1px solid var(--border);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #10b981;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.btn-primary-large {
    background: var(--primary);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid var(--primary);
}

.btn-primary-large:hover {
    background: transparent;
    color: var(--text);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary-large {
    background: transparent;
    color: var(--text);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary-large:hover {
    background: var(--bg-alt);
    border-color: var(--accent);
}


.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    line-height: 1;
    height: 2.5rem;
    /* Match the font-size of the largest number */
    justify-content: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}


.stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

.hero-visual {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 70vh;
    border-radius: var(--radius-lg);
    z-index: 1;
    overflow: hidden;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 6s infinite linear;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-alt);
}


.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: -2rem;
    width: 100%;
    height: 100%;
    background: var(--bg-alt);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.section-title-left {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--text);
}


.about-content p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2rem;
    opacity: 0.9;
}


.values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Comparison Slider */
.comparison-section {
    padding: 100px 0;
    background: var(--bg);
}


.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: ew-resize;
    user-select: none;
}

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

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

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

.image-after {
    z-index: 2;
    width: 50%;
    border-right: 2px solid white;
    overflow: hidden;
}

.label-before,
.label-after {
    position: absolute;
    bottom: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    color: white;
    backdrop-filter: blur(5px);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
}

.label-before {
    right: 2rem;
}

.label-after {
    left: 2rem;
}

.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
    cursor: ew-resize;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: white;
    z-index: 4;
    transform: translateX(-50%);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: 4px solid white;
    border-radius: 50%;
    z-index: 4;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.slider-button svg {
    transform: rotate(90deg);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-alt);
}


.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}


.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}


.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 2rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    margin: 0;
}


.faq-item.active {
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.reviews {
    padding: 100px 0;
    background: var(--bg);
}


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

.review-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}


.review-card:hover {
    background: var(--bg-alt);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}


.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 1.2rem;
}

.review-date {
    font-size: 0.85rem;
    color: #94a3b8;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
    flex-grow: 1;
    opacity: 0.9;
}


.reviewer-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text);
}


.reviewer-info span {
    font-size: 0.9rem;
    color: #64748b;
}

.services {
    padding: 100px 0;
    background: var(--bg);
}


.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border-radius: 4px;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    opacity: 0.8;
    margin: 0;
}


/* Pricing Section */
.service-card,
.review-card,
.pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-card.visible,
.review-card.visible,
.pricing-card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.satisfaction-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);

    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow);
}

.badge-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}


.badge-text span {
    color: var(--text-muted);
    font-size: 1.05rem;
}


.pricing {
    padding: 100px 0;
    background: var(--bg-alt);
}


.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -3rem;
    margin-bottom: 4rem;
    font-size: 1.25rem;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}


.pricing-card.highlighted {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.window-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}


.price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text) !important;

}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
}


.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 1rem;
    opacity: 0.8;
}


.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

.contact {
    padding: 100px 0;
    background: var(--bg-alt);
    color: var(--text);
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
}

.qr-container {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    text-align: center;
}

.qr-container p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.qr-link {
    cursor: pointer;
    display: inline-block;
}

.qr-link:hover .qr-code {
    transform: scale(1.05);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.form-group {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 1rem;
    font-size: 1.1rem;
    opacity: 0.7;
    z-index: 2;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}


.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(0, 129, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Redundant definition removed */



.btn-submit:hover {
    background: var(--secondary);
    transform: scale(1.02);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    color: white;
}

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

@keyframes floatIn {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--bg);
}


.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.map-info {
    max-width: 450px;
}

.map-info h2 {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    color: var(--text);
}


.map-info p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.area-list {
    list-style: none;
    padding: 0;
}

.area-list li {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-weight: 600;
}


.map-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border: 2px solid rgba(0, 129, 255, 0.1);
    border-radius: 32px;
}

footer {
    padding: 2rem 0;
    text-align: center;
    background: var(--bg);
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 17, 19, 0.9);
    backdrop-filter: blur(8px);
}


.modal-content {
    background: var(--bg-card);
    margin: 10% auto;
    padding: 3rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    color: var(--text);
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}


.close-modal {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

.legal-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.scrollable {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
}

.scrollable::-webkit-scrollbar {
    width: 6px;
}

.scrollable::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.fade-in-delayed {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.3s forwards ease-out;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimized Styles (Screens smaller than 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 3001;
    }

    .nav-links {
        display: none;
        /* Initially hide the horizontal menu */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        z-index: 3000;
        padding-bottom: 80px;
    }

    .nav-links.active {
        display: flex !important;
    }

    .hero-visual {
        display: none !important;
        /* Hide overlapping image on mobile */
    }

    /* Tabbed Navigation Logic */
    main section {
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    main section.active-section {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
        animation: tabFadeIn 0.5s forwards;
    }

    @keyframes tabFadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Global Mobile Spacing */
    section {
        padding: 130px 0 60px !important;
        /* Increased padding to prevent header cutting off text */
        min-height: auto;
    }


    .container {
        padding: 0 1.5rem;
    }

    /* Alternating Backgrounds for Clarity */
    .about,
    .pricing,
    .faq-section {
        background: var(--bg-alt) !important;
    }

    .services,
    .comparison-section,
    .reviews,
    .map-section {
        background: var(--bg) !important;
    }

    .contact {
        background: var(--bg-alt) !important;
        /* Keep contact dark */
    }


    header {
        padding: 0.75rem 0;
    }

    .nav-links {
        background: var(--bg);
        backdrop-filter: blur(20px);
    }


    .hero {
        display: block;
        padding: 120px 0 60px;
        text-align: left;
        background: var(--bg) !important;
    }


    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-visual {
        height: 40vh;
        clip-path: none;
    }

    /* Stats Grid Clean Up */
    .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        margin-top: 3rem;
        background: var(--bg-alt);
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
    }

    .stat-item:last-child {
        grid-column: span 2;
        border-top: 1px solid #f1f5f9;
        padding-top: 1rem;
    }

    .stat-number-wrapper {
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        gap: 0.85rem;
        padding: 0;
        margin-bottom: 3rem;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        padding: 1rem;
    }

    /* Horizontal Carousels (Services & Reviews) */
    .services-grid {
        gap: 5rem;
    }

    .service-card {
        display: block;
    }

    .service-icon {
        height: 300px;
        margin-bottom: 2rem;
    }

    .service-card h3 {
        font-size: 2rem;
    }

    .about-wrapper {
        display: block;
    }

    .about-image img {
        height: 400px;
        margin-bottom: 3rem;
    }

    /* Comparison Slider Height */
    .comparison-slider {
        height: 320px;
        border-radius: var(--radius);
    }

    /* Map Layout */
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .map-visual {
        height: 280px;
        order: 2;
    }

    /* Mobile Quick-Nav - Ensure Visibility */
    .hero {
        position: relative;
        z-index: 10;
        padding-top: 120px !important;
    }

    .mobile-quick-nav {
        display: flex !important;
        /* Force visibility */
        justify-content: center;
        gap: 0.75rem;
        margin: 2rem 0;
        padding: 0 1rem;
        position: relative;
        z-index: 20;
    }

    .quick-nav-item {
        flex: 1;
        background: var(--bg-card);

        padding: 0.85rem 0.25rem;
        border-radius: var(--radius);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .quick-nav-item span:not(.icon) {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text);
    }


    .contact {
        padding: 100px 0 40px !important;
    }

    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1.5rem 1.25rem;
        margin-top: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem 1rem 0.75rem 3rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 0.85rem;
        margin-top: 0.5rem;
    }

    /* Mobile Only Reviews Visibility */
    .mobile-only-reviews {
        display: block !important;
        margin: 3rem 0;
    }

    .mobile-only-reviews .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 2rem !important;
    }

    /* Widen About Us Mobile */
    .about-wrapper {
        padding: 0 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-content {
        padding: 0 !important;
        text-align: left !important;
    }

    .about-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    /* Minimize WhatsApp Button Mobile */
    .whatsapp-float {
        width: 55px !important;
        height: 55px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        justify-content: center !important;
        bottom: 1.5rem !important;
        right: 1.5rem !important;
    }

    .whatsapp-text {
        display: none !important;
    }

    .whatsapp-icon {
        font-size: 1.8rem !important;
        margin: 0 !important;
    }

    /* Max Space Contact Form */
    .contact {
        padding: 130px 0 40px !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .contact-methods,
    .qr-container {
        display: none !important;
    }

    .contact-form {
        margin-top: 0 !important;
        padding: 2rem 1.5rem !important;
    }
}

.mobile-only-reviews {
    display: none;
    /* Hide on desktop */
}

.mobile-quick-nav {
    display: none;
    /* Hide on desktop */
}

/* Sales Optimizations & Conversion Boosters */
.urgency-banner {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 999;
    position: relative;
}

.pulse-text {
    font-weight: 800;
    animation: pulseText 2s infinite;
}

@keyframes pulseText {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}


.pricing-tab:hover {
    border-color: var(--secondary);
    color: var(--primary);
}

.pricing-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 129, 255, 0.2);
}

/* Badges */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card {
    position: relative;
    padding-bottom: 2rem;
}

.highlight-service {
    border: 2px solid var(--secondary);
    position: relative;
}

/* Small CTAs */
.btn-primary-small {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 129, 255, 0.2);
}

.btn-primary-small:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 129, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        padding: 0 1rem;
    }
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--dark);
    -webkit-tap-highlight-color: transparent;
}

.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

[data-theme="dark"] .theme-toggle {
    color: #f8fafc;
}

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

/* Strikethrough Price */
.price-strikethrough {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: -0.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Booking Section & Calendar
   ========================================================================== */
.booking-section {
    padding: 100px 0;
    background: var(--light);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.booking-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.booking-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

/* Form Groups */
.booking-form-group {
    margin-bottom: 1.5rem;
}

.booking-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.booking-form-group input[type="text"],
.booking-form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.booking-form-group input:focus,
.booking-form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Service Toggle */
.service-toggle {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-toggle input[type="radio"] {
    display: none;
}

.service-toggle label {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.service-toggle input[type="radio"]:checked+label {
    border-color: var(--primary);
    background: rgba(0, 129, 255, 0.05);
    color: var(--primary);
}

/* Calendar */
.calendar-wrapper {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header h4 {
    margin: 0;
}

.month-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.month-btn:hover {
    background: #f1f5f9;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-weekday {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.calendar-day {
    padding: 0.75rem 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.calendar-day:not(.empty):not(.disabled):hover {
    background: #f1f5f9;
}

.calendar-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.booked {
    background: #fee2e2;
    color: #ef4444;
    text-decoration: none;
    position: relative;
}

.calendar-day.booked::after {
    content: 'belegt';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: #dc2626;
    font-weight: 600;
    letter-spacing: 0.02em;
}

[data-theme="dark"] .calendar-day.booked {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

[data-theme="dark"] .calendar-day.booked::after {
    color: #f87171;
}

.calendar-day.selected {
    background: var(--primary);
    color: white;
    border-radius: 4px;
}

.calendar-day.today {
    border: 1px solid var(--primary);
}

/* Timeslots */
.timeslots-wrapper h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.timeslot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.timeslot {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.timeslot:not(:disabled):hover {
    border-color: var(--primary);
    color: var(--primary);
}

.timeslot.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.timeslot:disabled,
.timeslot.booked {
    background: #f1f5f9;
    color: #94a3b8;
    text-decoration: line-through;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

/* Dark Mode Booking */
[data-theme="dark"] .booking-section {
    background: #0f172a !important;
}

[data-theme="dark"] .booking-container {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .booking-step {
    border-color: #334155;
}

[data-theme="dark"] .booking-form-group input[type="text"],
[data-theme="dark"] .booking-form-group select {
    background: #0f172a;
    border-color: #334155;
    color: #f8fafc;
}

[data-theme="dark"] .service-toggle label {
    border-color: #334155;
}

[data-theme="dark"] .service-toggle input[type="radio"]:checked+label {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

[data-theme="dark"] .calendar-wrapper {
    border-color: #334155;
}

[data-theme="dark"] .month-btn {
    color: #f8fafc;
}

[data-theme="dark"] .month-btn:hover {
    background: #334155;
}

[data-theme="dark"] .calendar-day:not(.empty):not(.disabled):hover {
    background: #334155;
}

[data-theme="dark"] .calendar-day.disabled {
    color: #475569;
}

[data-theme="dark"] .timeslot {
    background: #0f172a;
    border-color: #334155;
    color: #f8fafc;
}

[data-theme="dark"] .timeslot.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

[data-theme="dark"] .timeslot:not(:disabled):hover {
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .timeslot:disabled,
[data-theme="dark"] .timeslot.booked {
    background: #1e293b;
    color: #475569;
    border-color: #334155;
}

[data-theme="dark"] .booking-form-group label {
    color: #cbd5e1;
}

/* Dark Mode */
/* Theme System Handled via :root and [data-theme="light"] */


/* ==========================================================================
   Responsive Utilities for Portals
   ========================================================================== */
.portal-layout {
    display: flex !important;
    min-height: 100vh !important;
    background: #0f1113 !important;
    /* Extremely dark */
    color: white !important;
}

.portal-sidebar {
    width: 280px;
    background: #111214;
    color: white;
    position: fixed;
    height: 100vh;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.portal-main {
    flex-grow: 1;
    margin-left: 280px;
    padding: 3rem;
    transition: margin-left 0.3s ease;
    background: #0f1113 !important;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
    padding: 0 0.75rem;
}




.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block !important;
    opacity: 1 !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .portal-sidebar {
        transform: translateX(-100%);
    }

    .portal-sidebar.active {
        transform: translateX(0);
    }

    .portal-main {
        margin-left: 0;
        padding: 1.5rem;
        width: 100%;
    }

    .sidebar-toggle {
        display: flex !important;
    }
}

.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    border: none;
    z-index: 3000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-toggle svg {
    width: 28px;
    height: 28px;
}

.sidebar-toggle:hover {
    background: var(--dark);
    transform: scale(1.05);
}

.logo-text-portal {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text) !important;
}


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

/* Portal Specific Components */
.profile-card,
.admin-table-container {
    background: #1a1c1e !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow-x: auto;
}



.profile-card h3,
.admin-table-container h1 {
    color: var(--accent) !important;
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

@media (min-width: 993px) {
    .admin-table {
        min-width: 900px;
    }
}



.admin-table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.admin-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    vertical-align: middle;
}

.admin-table th:first-child,
.admin-table td:first-child {
    min-width: 180px;
}

.admin-table th:nth-child(2),
.admin-table td:nth-child(2) {
    min-width: 200px;
}



.sidebar-item {
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius);
    margin: 0 0.5rem;
}

.sidebar-item svg {
    flex-shrink: 0;
}



.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.sidebar-item.active {
    background: rgba(45, 74, 62, 0.2);
    color: var(--accent);
    border-left: 4px solid var(--accent);
}

.sidebar-header {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-footer {
    padding: 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-footer .btn-primary {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}


.auth-input {
    background: #111214 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Responsive Table into Cards */
@media (max-width: 768px) {
    .responsive-table thead {
        display: none;
    }

    .responsive-table,
    .responsive-table tbody,
    .responsive-table tr,
    .responsive-table td {
        display: block;
        width: 100%;
    }

    .responsive-table tr {
        margin-bottom: 1.5rem;
        background: #1e2022;
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem;
    }

    .responsive-table td {
        text-align: left;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }


    .admin-table {
        min-width: 0 !important;
    }

    .responsive-table td::before {
        content: attr(data-label);
        position: static;
        width: 100%;
        text-align: left;
        font-weight: 700;
        color: var(--accent);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }


    .responsive-table td:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   Price Calculator & Subscription Styles
   ========================================================================== */
.calculator-section {
    padding: 100px 0;
    background: var(--bg);
}

.calc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    align-items: center;
}

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

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

/* Toggle (Radio Buttons like Tabs) */
.calc-toggle,
.frequency-toggle,
.service-toggle {
    display: flex;
    background: var(--input-bg);
    padding: 0.25rem;
    border-radius: var(--radius);
    gap: 0.25rem;
}

.calc-toggle input,
.frequency-toggle input,
.service-toggle input {
    display: none;
}

.calc-toggle label,
.frequency-toggle label,
.service-toggle label {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.calc-toggle input:checked+label,
.frequency-toggle input:checked+label,
.service-toggle input:checked+label {
    background: var(--primary);
    color: white;
}

/* Range Slider */
.calc-range-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--input-bg);
    border-radius: 5px;
    outline: none;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
}

.calc-amount-display {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.calc-select {
    width: 100%;
    padding: 1rem;
    background-color: #1a1c1e !important;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: #fdfcfb !important;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    /* Try to remove some default styling */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.calc-select option {
    background-color: #1a1c1e !important;
    color: #fdfcfb !important;
}

/* Result Box */
.calc-result {
    text-align: center;
    padding: 3rem;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary);
}

.result-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.result-price {
    margin-bottom: 1rem;
}

.result-price .amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
}

.result-savings {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    margin-bottom: 1rem;
}

.calc-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .calc-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   SALES BOOSTER: Google Review Badge
   ========================================================================== */
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.grb-stars {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

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

.grb-text strong {
    color: var(--text);
    font-weight: 800;
}

/* ==========================================================================
   SALES BOOSTER: Trust Guarantee Section
   ========================================================================== */
.trust-guarantee-section {
    padding: 100px 0 60px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

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

    .trust-item {
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    .trust-icon {
        font-size: 2rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .trust-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
}

/* ==========================================================================
   SALES BOOSTER: Urgency Countdown Timer
   ========================================================================== */
.countdown-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.countdown-inline .cd-block {
    background: rgba(0, 0, 0, 0.25);
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.85rem;
    min-width: 28px;
    text-align: center;
}

.countdown-inline .cd-sep {
    font-weight: 700;
    opacity: 0.8;
}

/* ==========================================================================
   SALES BOOSTER: CTA Pulse Animation
   ========================================================================== */
.pulse-cta {
    position: relative;
    animation: ctaPulse 2.5s infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(45, 74, 62, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(45, 74, 62, 0);
    }
}

/* ==========================================================================
   SALES BOOSTER: Sticky Mobile CTA Bar
   ========================================================================== */
.sticky-cta-bar {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: none;
        /* Controlled by JS - shown when scrolled past hero */
        position: fixed;
        bottom: 70px;
        /* Above bottom tab bar */
        left: 0;
        right: 0;
        z-index: 998;
        padding: 0.6rem 1rem;
        background: rgba(15, 17, 19, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border);
        align-items: center;
        gap: 0.75rem;
    }

    .sticky-cta-bar.visible {
        display: flex !important;
    }

    .sticky-cta-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: var(--primary);
        color: white !important;
        padding: 0.85rem 1rem;
        border-radius: var(--radius);
        text-decoration: none;
        font-weight: 700;
        font-size: 0.9rem;
        transition: all 0.2s ease;
    }

    .sticky-cta-btn:active {
        transform: scale(0.98);
    }

    .sticky-cta-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: #25d366;
        color: white !important;
        border-radius: var(--radius);
        text-decoration: none;
        flex-shrink: 0;
        transition: all 0.2s ease;
    }

    .sticky-cta-phone:active {
        transform: scale(0.95);
    }

    [data-theme="light"] .sticky-cta-bar {
        background: rgba(253, 252, 251, 0.95);
    }
}

/* ==========================================================================
   PWA: Install Banner
   ========================================================================== */
.pwa-install-banner {
    position: fixed;
    bottom: 80px;
    left: 1rem;
    right: 1rem;
    z-index: 1001;
    background: rgba(26, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUpBanner 0.5s ease-out;
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pwa-install-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pwa-install-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pwa-install-text strong {
    color: #fff;
    font-size: 1rem;
}

.pwa-install-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.pwa-install-actions {
    display: flex;
    gap: 0.75rem;
}

.pwa-install-action {
    flex: 1;
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pwa-install-action:active {
    transform: scale(0.97);
}

.pwa-dismiss-action {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pwa-dismiss-action:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .pwa-install-banner {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .pwa-install-text strong {
    color: var(--text);
}

[data-theme="light"] .pwa-install-text span {
    color: var(--text-muted);
}

[data-theme="light"] .pwa-dismiss-action {
    color: var(--text-muted);
    border-color: var(--border);
}

/* Hide on desktop */
@media (min-width: 769px) {
    .pwa-install-banner {
        display: none !important;
    }
}

/* ==========================================================================
   UX: Mobile Bottom Tab Bar
   ========================================================================== */
.mobile-bottom-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(15, 17, 19, 0.97);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.35rem 0.5rem;
        padding-bottom: calc(0.35rem + env(safe-area-inset-bottom));
    }

    .bottom-tab {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.15rem;
        padding: 0.5rem 0;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.65rem;
        font-weight: 600;
        transition: all 0.2s ease;
        border-radius: 8px;
        -webkit-tap-highlight-color: transparent;
    }

    .bottom-tab.active {
        color: var(--accent);
    }

    .bottom-tab svg {
        transition: all 0.2s ease;
    }

    .bottom-tab.active svg {
        color: var(--accent);
    }

    .bottom-tab-cta {
        position: relative;
    }

    .bottom-tab-cta svg {
        background: var(--primary);
        color: white !important;
        border-radius: 50%;
        padding: 6px;
        width: 36px;
        height: 36px;
        margin-top: -10px;
        box-shadow: 0 4px 15px rgba(45, 74, 62, 0.4);
    }

    .bottom-tab-cta span {
        color: var(--primary);
        font-weight: 700;
    }

    [data-theme="light"] .mobile-bottom-bar {
        background: rgba(253, 252, 251, 0.97);
        border-top-color: var(--border);
    }

    [data-theme="light"] .bottom-tab {
        color: rgba(0, 0, 0, 0.4);
    }

    [data-theme="light"] .bottom-tab.active {
        color: var(--primary);
    }

    /* Add padding to body for bottom bar */
    body {
        padding-bottom: 70px;
    }

    /* Adjust footer padding */
    footer {
        padding-bottom: 80px !important;
    }

    /* Move WhatsApp button above bottom bar and sticky CTA */
    .whatsapp-float {
        bottom: 140px !important;
    }
}

/* ==========================================================================
   UX: Booking Progress Bar
   ========================================================================== */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    flex-shrink: 0;
}

.progress-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--input-bg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(45, 74, 62, 0.2);
}

.progress-step.completed .progress-circle {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.progress-step span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-step.active span {
    color: var(--primary);
}

.progress-step.completed span {
    color: #10b981;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    min-width: 40px;
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.progress-line.completed {
    background: #10b981;
}

@media (max-width: 480px) {
    .booking-progress {
        margin-bottom: 1.5rem;
    }

    .progress-circle {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .progress-step span {
        font-size: 0.65rem;
    }
}

/* Work Gallery Styles */
.work-gallery-section {
    padding: 100px 0;
    background: var(--bg);
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.gallery-item-title {
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    background: var(--primary);
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}



@media (max-width: 768px) {
    .service-card {
        flex-direction: row;
        padding: 1.5rem;
        gap: 1rem;
        align-items: flex-start;
    }
    .service-icon {
        flex-shrink: 0;
        width: 45px;
        height: 45px;
    }
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }
    .service-card p {
        font-size: 0.9rem;
    }
    .services-grid {
        gap: 1rem;
        margin-top: 2rem;
    }
}
