/* ============================================================
   MAIN STYLESHEET - LTI Smart Lighting
   Version: 3.0.0 (with vibrating call button)
   ============================================================ */

/* ========== CSS RESET & BASE STYLES ========== */

@font-face {
    font-family: "Arm Flat";
    src: url(./fonts/Arm\ Flat.woff2) format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Arm Flat";
    src: url(./fonts/Arm\ Flat\ ExtraBold.woff2) format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 800;
}

@font-face {
    font-family: "Calvino-Grande";
    src: url(./fonts/Calvino-Grande-Italic-Variable-trial.woff2) format("woff2");
    font-display: swap;
    font-style: italic;
    font-weight: 400;
}

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


html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body {
    font-family: 'Arm Flat', 'Calvino-Grande', serif;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    background-color: #303335;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul,
ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: 80px 0;
    position: relative;
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.title-highlight {
    color: #ffedb9;
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffedb9, transparent);
}

.section-description {
    font-size: 18px;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #ff7700;
    color: #ffffff;
    box-shadow: 0 10px 20px -8px rgba(255, 119, 0, 0.4);
}

.btn-primary:hover {
    background-color: #ff9933;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -8px rgba(255, 119, 0, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-outline:hover {
    border-color: #ff7700;
    color: #ff7700;
    transform: scale(1.05);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-with-icon {
    gap: 10px;
}

.btn-full {
    width: 100%;
}

.btn-calculator {
    font-size: 14px;
    padding: 8px 16px;
}

.wow-effect {
    color: #ffedb9;
    position: relative;
}

.wow-effect::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(255, 237, 185, 0.2);
    filter: blur(10px);
    border-radius: 30px;
    z-index: -1;
    animation: pulse 2s infinite;
}

/* ========== ANIMATIONS ========== */
@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.2;
        transform: scale(0.95);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

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

/* ========== HEADER STYLES ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #303335;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    padding: 8px 0;
    background: rgba(18, 18, 18, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-wrapper {
    flex-shrink: 0;
}

.logo-link {
    display: block;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    width: 120px;
    height: auto;
}

.main-navigation {
    flex: 1;
    margin: 0 30px;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff7700;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ff7700;
}

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

.promo-link {
    color: #ffedb9;
    font-weight: 600;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
    left: 8px;
}

.hamburger {
    top: 19px;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #303335;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    z-index: 99;
}

.mobile-menu.active {
    display: block;
    animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-phone {
    font-size: 20px;
    font-weight: 700;
    color: #ffedb9;
    margin-top: 15px;
    display: block;
}

/* ========== CALL BUTTON STYLES ========== */
.call-button-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 10px;
}

.phone {
    background-color: #ff7700;
    color: #ffffff !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.phone:hover {
    background-color: #ff9933;
    color: #ffffff !important;
}

.phone::after {
    display: none;
}

/* Vibrating Call Button */
.vibrating-call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #353839 0%, #353839 100%);
    border-radius: 50%;
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-decoration: none;
    animation: vibrate 1s infinite, pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vibrating-call-button:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(197, 152, 239, 0.6);
}

.vibrating-call-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    animation: shine 3s infinite linear;
}

/* Call Ripple Effect */
.vibrating-call-button::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 50%;
    animation: doubleRing 1.5s infinite;
    opacity: 0;
}

.vibrating-call-button:hover::after {
    opacity: 1;
}

/* Call Animations */
@keyframes vibrate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-5deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
    }

    50% {
        box-shadow: 0 5px 30px rgba(138, 43, 226, 0.8);
    }
}

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

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

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

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

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes soundWave {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(138, 43, 226, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
    }
}

.vibrating-call-button.active {
    animation: soundWave 1s infinite;
}

.call-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
}

/* Mobile floating call button */
.mobile-phone-call {
    display: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 119, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 237, 185, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-accent {
    color: #ffedb9;
    display: block;
    font-size: 56px;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    animation: slideInRight 1s ease;
}

.hero-slider {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 60%, rgba(255, 119, 0, 0.3));
    z-index: 1;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* ========== LIGHTING DEMO SECTION ========== */
.lighting-demo-section {
    padding: 80px 0;
    background: #121212;
    position: relative;
    overflow: hidden;
}

.lighting-demo-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 119, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.lighting-demo-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.lighting-demo-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.lighting-demo-title span {
    color: #ffedb9;
}

.lighting-demo-subtitle {
    text-align: center;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
}

.demo-interactive-wrapper {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.5);
}

#fx-wrap {
    position: relative;
    /* max-width: 1200px; */
    width: 100%;
    height: 100vh;
    /* padding-bottom: 50%; */
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #1a1a1a;
    border-radius: 16px;
}

.luxor_dimming_interactive_2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity;
}

.luxor_dimming_interactive_2.active {
    opacity: 1;
}

.dimming_7 {
    background-image: url('./LTI-zone-dimmer-7pm.png');
}

.dimming_9 {
    background-image: url('./LTI-zone-dimmer-9pm.png');
}

.dimming_12 {
    background-image: url('./LTI-zone-dimmer-12pm.png');
}

.zone_controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    width: 90%;
    max-width: 450px;
    justify-content: center;
}

.zone_control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    min-width: 90px;
}

.zone_control:hover {
    background: rgba(255, 255, 255, 0.25);
}

.zone_control.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
}

.zone_percentage {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 5;
    width: 70px;
    height: 70px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100%;
}

.percentage_amount {
    font-weight: 700;
    font-size: 18px;
}

.percentage_label {
    font-weight: 500;
    font-size: 12px;
    opacity: 0.9;
}

.zone_1 {
    top: 40%;
    right: 47%;
}

.zone_2 {
    top: 49%;
    right: 12%;
}

.zone_3 {
    bottom: 29%;
    left: 25%;
}

/* ========== VOLTAGE CALCULATOR MODAL STYLES ========== */
.voltage-calculator-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
}

.voltage-calculator-modal .t-popup__container {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 40px;
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalSlideUp 0.4s ease-out;
    border: 1px solid rgba(255, 119, 0, 0.3);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.voltage-calculator-modal .t702__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #ffedb9;
}

.voltage-calculator-modal .t702__descr {
    text-align: center;
    margin-bottom: 30px;
    color: #cccccc;
    font-size: 15px;
}

.voltage-calculator-modal .t-form__inputsbox {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voltage-calculator-modal .t-input-block {
    position: relative;
}

.voltage-calculator-modal .t-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.voltage-calculator-modal .t-input:focus {
    outline: none;
    border-color: #ff7700;
    box-shadow: 0 0 0 4px rgba(255, 119, 0, 0.2);
}

.voltage-calculator-modal .t-input__vis-ph {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #888;
    pointer-events: none;
    transition: 0.25s ease all;
    background: #1f2937;
    padding: 0 4px;
    font-size: 16px;
}

.voltage-calculator-modal .t-input:focus~.t-input__vis-ph,
.voltage-calculator-modal .t-input:not(:placeholder-shown)~.t-input__vis-ph {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: #ff7700;
    font-weight: 600;
}

.voltage-calculator-modal .t-input-subtitle {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 6px;
    font-weight: 500;
}

.voltage-calculator-modal .t-calc__wrapper {
    margin-top: 0;
    padding: 16px 20px;
    background: rgba(255, 119, 0, 0.1);
    border: 1px solid rgba(255, 119, 0, 0.3);
    border-radius: 12px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}

.voltage-calculator-modal .t-calc {
    font-size: 24px;
    color: #ffedb9;
    font-weight: 800;
}

.voltage-calculator-modal .t-calc__postfix-text {
    color: #ccc;
}

.voltage-calculator-modal .t-form__hidden {
    display: none;
}

.voltage-calculator-modal .t-submit {
    margin-top: 35px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, #ff7700, #ff9933);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 40px;
    transition: all 0.3s;
}

.voltage-calculator-modal .t-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 119, 0, 0.5);
}

.voltage-calculator-modal .t-popup__close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
    color: #fff;
}

.voltage-calculator-modal .t-popup__close-button:hover {
    background: #ff7700;
    transform: rotate(90deg);
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #181818 0%, #121212 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #202020;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 40px -10px rgba(255, 119, 0, 0.3);
}

.card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.card-content {
    padding: 30px 25px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffedb9;
}

.card-description {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    color: #ff7700;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-link:hover {
    gap: 10px;
    color: #ff9933;
}

/* ========== SMART LANDSCAPE SECTION ========== */
.smart-lighting-section {
    padding: 100px 0;
    background: #121212;
    position: relative;
}

.smart-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: left;
}

.smart-highlight {
    color: #ffedb9;
}

.lighting-showcase {
    position: relative;
    /* display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px; */
    align-items: start;
    /* margin-bottom: 60px; */
}

.image-composition {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.8); */
    /* background: #000; */
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease-out;
    will-change: opacity;
}

.layer-base {
    z-index: 1;
}

.layer-overlay {
    z-index: 2;
    pointer-events: none;
}

.control-panel-wrapper {
    width: 100%;
    transform: translateY(-10%);
    z-index: 550;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 25px 40px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .control-panel-wrapper {
        transform: translateY(-20%);
    }
}

@media (min-width: 1200px) {
    .control-panel-wrapper {
        transform: translateY(-40%);
    }
}

.control-panel-wrapper:hover {
    box-shadow: 0 25px 50px -10px rgba(255, 119, 0, 0.3);
    border-color: rgba(255, 119, 0, 0.3);
}

.panel-header {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffedb9;
    /* margin-bottom: 30px; */
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.control-group {
    /* margin-bottom: 25px; */
}

.control-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
}

.control-value {
    color: #ffedb9;
    font-weight: 700;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    transition: background 0.3s;
}

input[type=range]::-webkit-slider-thumb {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
    box-shadow: 0 0 15px #ff7700;
    border: 2px solid #ff7700;
    transition: transform 0.2s, box-shadow 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 25px #ff7700;
}

.panel-footer {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: center;
}

.panel-note {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

.lighting-description-block {
    max-width: 800px;
}

.description-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffedb9;
}

.description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
}

/* ========== WI-FI SECTION ========== */
.wifi-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #121212 0%, #181818 100%);
    position: relative;
    overflow: hidden;
}

.wifi-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 119, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.wifi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.wifi-content {
    padding-right: 30px;
}

.wifi-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.wifi-accent {
    color: #ff7700;
    position: relative;
    display: inline-block;
}

.wifi-accent::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(255, 119, 0, 0.2);
    filter: blur(12px);
    border-radius: 30px;
    z-index: -1;
    animation: pulse 3s infinite;
}

.wifi-description {
    font-size: 18px;
    color: #bbb;
    margin-bottom: 35px;
    line-height: 1.7;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.feature-check {
    color: #ff7700;
    font-weight: 700;
    font-size: 20px;
}

.phone-mockup-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 4/3;
}

.phone-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-screen {
    z-index: 2;
}

.wifi-icon {
    position: absolute;
    top: 35%;
    left: 20%;
    width: 60px;
    height: 60px;
    z-index: 5;
    color: #ffedb9;
    filter: drop-shadow(0 0 8px rgba(255, 237, 185, 0.6));
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

.interactive-avatar-btn {
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    overflow: hidden;
    border: 3px solid #ffedb9;
    box-shadow: 0 0 20px rgba(255, 119, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background: #000;
}

.interactive-avatar-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(255, 119, 0, 0.9);
    border-color: #ff7700;
}

.interactive-avatar-btn:active {
    transform: scale(0.95);
}

.interactive-avatar-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-text {
    position: absolute;
    bottom: 12%;
    left: 28%;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 6;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.status-on {
    color: #ffffff;
    opacity: 1;
}

.status-off {
    color: #ff7700;
    opacity: 0;
}

/* ========== RGB SECTION ========== */
.rgb-section {
    padding: 100px 0;
    background: #121212;
}

.rgb-header {
    text-align: center;
    margin-bottom: 50px;
}

.rgb-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.rgb-accent {
    color: #ffedb9;
    display: block;
    font-size: 36px;
    margin-top: 15px;
}

.rgb-showcase {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 50px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 50px -15px #000;
}

.rgb-base,
.rgb-overlay,
.rgb-dark {
    width: 100%;
    height: auto;
    display: block;
}

.rgb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.rgb-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.rgb-controls {
    max-width: 700px;
    margin: 0 auto 40px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rgb-control-header {
    font-size: 18px;
    text-align: center;
    color: #ffedb9;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.rgb-control-group {
    margin-bottom: 20px;
}

.rgb-control-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

.rgb-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: linear-gradient(to right, #ff7700, #ffaa33);
    border-radius: 3px;
}

.rgb-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ff7700;
    cursor: pointer;
    box-shadow: 0 0 10px #ff7700;
}

.rgb-value {
    text-align: right;
    font-size: 14px;
    color: #ffedb9;
    margin-top: 5px;
}

.rgb-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
}

/* ========== STAGES SECTION ========== */
.stages-section {
    padding: 100px 0;
    background: #181818;
}

.stages-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stage-card {
    background: #202020;
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stage-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 119, 0, 0.3);
    box-shadow: 0 20px 30px -10px rgba(255, 119, 0, 0.2);
}

.stage-number {
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 237, 185, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.stage-card:hover .stage-number {
    color: rgba(255, 237, 185, 0.2);
}

.stage-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffedb9;
    position: relative;
    z-index: 1;
}

.stage-list {
    position: relative;
    z-index: 1;
}

.stage-item {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #ccc;
}

.stage-item::before {
    content: '•';
    color: #ff7700;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.stages-cta {
    text-align: center;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 80px 0;
    background: #121212;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    min-height: 250px;
}

.testimonial-card {
    background: #202020;
    border-radius: 24px;
    padding: 40px;
    display: none;
    animation: fadeIn 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonial-rating {
    color: #ffedb9;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #ffedb9;
    font-size: 18px;
}

.author-location {
    font-size: 14px;
    color: #888;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #202020;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-prev:hover,
.slider-next:hover {
    background: #ff7700;
    transform: scale(1.1);
    border-color: #ff7700;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ff7700;
    transform: scale(1.3);
    box-shadow: 0 0 10px #ff7700;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #202020 0%, #181818 100%);
}

.cta-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-description {
    color: #ccc;
    margin-bottom: 30px;
}

.cta-form {
    text-align: left;
}

.form-row {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: #ff7700;
    background: rgba(255, 119, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 119, 0, 0.2);
}

.form-input::placeholder {
    color: #888;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff7700;
}

.checkbox-row label {
    font-size: 14px;
    color: #aaa;
}

/* ========== FOOTER ========== */
.site-footer {
    background: #0a0a0a;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 10px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-phone {
    font-size: 18px;
    font-weight: 600;
    color: #ffedb9;
}

.footer-phone:hover {
    color: #ff7700;
}

.footer-email {
    font-size: 16px;
    color: #ccc;
}

.footer-email:hover {
    color: #ff7700;
}

.footer-address {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    font-style: normal;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffedb9;
    margin-bottom: 15px;
}

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

.footer-link {
    font-size: 14px;
    color: #aaa;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ff7700;
    padding-left: 5px;
}

.footer-hours {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #ff7700;
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #666;
}

.privacy-links {
    display: flex;
    gap: 20px;
}

.privacy-link {
    color: #666;
    transition: color 0.3s;
}

.privacy-link:hover {
    color: #ff7700;
}

/* ========== ORIGINAL MODALS ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-container {
    background: #202020;
    border-radius: 30px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    background: #ff7700;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffedb9;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 25px;
    font-size: 15px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
}

.form-control:focus {
    border-color: #ff7700;
}

.file-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-label {
    padding: 12px;
    background: rgba(255, 119, 0, 0.1);
    border: 1px dashed #ff7700;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    color: #ff7700;
    font-size: 14px;
    transition: all 0.3s;
}

.file-label:hover {
    background: rgba(255, 119, 0, 0.2);
}

.file-input {
    display: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff7700;
}

.checkbox-group label {
    font-size: 13px;
    color: #aaa;
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .call-button-container {
        display: none;
    }

    .mobile-phone-call {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #8a2be2 0%, #9400d3 100%);
        border-radius: 50%;
        color: white;
        font-size: 24px;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        animation: vibrate 1s infinite, pulse 2s infinite;
        box-shadow: 0 5px 25px rgba(138, 43, 226, 0.5);
        text-decoration: none;
    }

    .mobile-phone-call:hover {
        animation: none;
        transform: scale(1.1);
    }
}

@media (max-width: 900px) {
    .main-navigation {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container,
    .lighting-showcase,
    .wifi-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .title-accent {
        font-size: 42px;
    }

    .wifi-title {
        font-size: 36px;
    }

    .stages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .interactive-avatar-btn {
        left: 50%;
        transform: translateX(-50%);
    }

    .interactive-avatar-btn:hover {
        transform: translateX(-50%) scale(1.1);
    }

    .status-text {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 100%;
        left: 0;
    }

    .wifi-icon {
        left: 15%;
    }

    .lighting-demo-title {
        font-size: 32px;
    }

    #fx-wrap {
        padding-bottom: 60%;
    }

    .zone_1 {
        top: 35%;
        right: 45%;
    }

    .zone_2 {
        top: 45%;
        right: 10%;
    }

    .zone_3 {
        bottom: 25%;
        left: 20%;
    }

    .zone_percentage {
        width: 60px;
        height: 60px;
    }

    .percentage_amount {
        font-size: 16px;
    }

    .percentage_label {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    #fx-wrap {
        padding-bottom: 80%;
    }

    .zone_controls {
        bottom: 15px;
        gap: 8px;
    }

    .zone_control {
        padding: 10px 15px;
        font-size: 12px;
        min-width: 70px;
    }

    .zone_percentage {
        width: 50px;
        height: 50px;
    }

    .percentage_amount {
        font-size: 14px;
    }

    .percentage_label {
        font-size: 10px;
    }

    .zone_1 {
        top: 30%;
        right: 40%;
    }

    .zone_2 {
        top: 40%;
        right: 8%;
    }

    .zone_3 {
        bottom: 20%;
        left: 15%;
    }

    .voltage-calculator-modal .t-popup__container {
        padding: 30px 20px;
        margin: 0 15px;
    }
}

@media (max-width: 600px) {

    .services-grid,
    .stages-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .smart-title {
        font-size: 36px;
    }

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

    .rgb-accent {
        font-size: 24px;
    }

    .cta-wrapper {
        padding: 30px 20px;
    }

    .slider-controls {
        gap: 15px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    #fx-wrap {
        padding-bottom: 100%;
    }

    .zone_controls {
        width: 95%;
        bottom: 10px;
    }

    .zone_control {
        padding: 8px 10px;
        font-size: 11px;
        min-width: 60px;
        gap: 5px;
    }

    .zone_percentage {
        width: 40px;
        height: 40px;
    }

    .percentage_amount {
        font-size: 12px;
    }

    .percentage_label {
        font-size: 9px;
    }

    .zone_1 {
        top: 35%;
        right: 48%;
    }

    .zone_2 {
        top: 28%;
        right: 5%;
    }

    .zone_3 {
        bottom: 30%;
        left: 10%;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.p-20 {
    padding: 20px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.fade-enter {
    opacity: 0;
    transform: translateY(20px);
}

.fade-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.glass-effect {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== END OF STYLESHEET ========== */