:root {
    --bg-deep: #020408;
    --bg-dark: #05080f;
    --bg-surface: #0a0e1a;
    --accent: #0072ff;
    --accent-glow: rgba(0, 114, 255, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass: rgba(10, 14, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent);
    /* Fallback for browsers that don't support background-clip: text */
}

.accent {
    color: var(--accent);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-border);
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    background: rgba(10, 14, 20, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-support {
    background: rgba(0, 114, 255, 0.1);
    color: var(--accent) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 114, 255, 0.2);
}

.btn-support:hover {
    background: rgba(0, 242, 255, 0.2) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-map-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 114, 255, 0.25));
    opacity: 0.95;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Subpage Specifics */
.subpage-hero {
    min-height: 60vh;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.service-icon-large {
    margin-bottom: 2rem;
}

.service-icon-large img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.content-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Services */
.services {
    padding: 8rem 2rem;
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-surface);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.service-icon img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.learn-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more {
    transform: translateX(5px);
}

/* Tickets Section */
.tickets {
    padding: 8rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ticket-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.ticket-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.ticket-title-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ticket-title-group .section-title {
    margin-bottom: 0;
}

.ticket-icon-main {
    height: 60px;
}

.ticket-icon-main img {
    height: 100%;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.ticket-tabs {
    display: flex;
    background: var(--bg-surface);
    padding: 5px;
    border-radius: 12px;
    gap: 5px;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--bg-deep);
    color: var(--accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-form {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 114, 255, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-deep);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.full-width {
    width: 100%;
}

/* Active Tickets List */
.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ticket-item {
    background: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.staff-login-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.staff-login-container h4 {
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.staff-login-container p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.nav-phone a,
.detail a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.nav-phone a:hover,
.detail a:hover {
    color: var(--accent);
}

.nav-phone {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-divider {
    color: var(--glass-border);
    margin: 0 0.5rem;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-open {
    background: rgba(0, 114, 255, 0.1);
    color: var(--accent);
}

.status-closed {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.ticket-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    background: var(--bg-deep);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 4, 8, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 600px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
}

.modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.modal-info label,
.modal-description label {
    color: var(--text-secondary);
    font-weight: 600;
}

.modal-description p {
    background: var(--bg-deep);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-top: 0.5rem;
    min-height: 100px;
}

.modal-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

/* FAQ Section */
.faq {
    padding: 8rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-surface) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--text-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--bg-dark);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(0, 114, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Footer */
.footer {
    padding: 6rem 2rem 4rem;
    background: var(--bg-deep);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.footer-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 500px;
    /* Prevent it from expanding too much in flex containers */
}

.footer-cable-img {
    max-width: 450px !important;
    width: 100% !important;
    height: auto;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 30px rgba(0, 114, 255, 0.2));
    animation: pulse-glow 8s ease-in-out infinite;
    transform: rotate(-10deg);
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 114, 255, 0.2));
        transform: rotate(-10deg) translateY(0);
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(0, 114, 255, 0.4));
        transform: rotate(-8deg) translateY(-10px);
    }
}

.footer-content {
    flex: 1;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 32px;
}

.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-nav-col h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav-col a:hover {
    color: var(--accent);
}

.footer-copyright {
    color: rgba(148, 163, 184, 0.4);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .footer-content {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-cable-img {
        max-width: 300px;
    }
}

/* Icon Utilities */
.icon-small {
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
    filter: drop-shadow(0 0 4px var(--accent-glow));
}

.icon-inline {
    height: 24px;
    vertical-align: middle;
    margin-right: 12px;
    filter: drop-shadow(0 0 6px var(--accent-glow));
}

.nav-phone {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-phone {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero {
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem;
        justify-content: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.6);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Tip of the Day Section */
.daily-tip {
    padding: 4rem 2rem;
    background: var(--bg-deep);
}

.tip-container {
    max-width: 800px;
    margin: 0 auto;
}

.tip-card {
    text-align: center;
    padding: 2.5rem !important;
    border-color: rgba(0, 114, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.tip-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.tip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(0, 114, 255, 0.1);
    border-radius: 12px;
}

.tip-card h3 {
    font-size: 1.4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

#tip-content {
    font-size: 1.1rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Calculator Page */
.pricing-calculator-section {
    padding: 10rem 2rem 6rem;
    min-height: 100vh;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.calculator-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem !important;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.pricing-tier-label {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.calc-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calc-tab.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.calc-group {
    margin-bottom: 2.5rem;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calc-label-row label {
    font-weight: 600;
    color: var(--text-primary);
}

.calc-value {
    background: var(--gradient);
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 0 10px rgba(0, 114, 255, 0.4);
    min-width: 35px;
    text-align: center;
    display: inline-block;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    margin-bottom: 1rem;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 114, 255, 0.5);
    transition: transform 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: -0.6rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.calc-price-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.calc-addons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.calc-extra {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.extra-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.extra-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.extra-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.extra-content p {
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.extra-toggle.active svg {
    transform: rotate(180deg);
}

.extra-toggle.active+.extra-content {
    max-height: 200px;
}

.calculator-summary {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.summary-box {
    background: var(--bg-deep);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 114, 255, 0.2);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.summary-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.summary-total {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.summary-breakdown {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.summary-btn {
    width: 100%;
}

.calc-contact-btn {
    margin-top: 2rem;
    text-align: right;
}

.btn-contact-simple {
    background: #9333ea;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-contact-simple:hover {
    background: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.calc-disclaimer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-title {
        font-size: 2.5rem;
    }
}