/*
# ───────────────────────────────────────────
# ◉ Организация и Создатель ◉
# ───────────────────────────────────────────
organization = "SAArk"  # Название организации
creator = "Stupak"      # Создатель

# ───────────────────────────────────────────
# ◉ Проект ◉
# ───────────────────────────────────────────
project = "Prommetstroi"         # Название проекта
start_date = "23.04.2024"  # Дата начала проекта

# ───────────────────────────────────────────
# ◉ Собственность Организации ◉
# ───────────────────────────────────────────
ownership = "SAArk принадлежит Stupak"  # Описание собственности
# ───────────────────────────────────────────
*/

@font-face {
    font-family: 'Plain';
    src: url('../fonts/Plain-Regular.woff2') format('woff2'),
        url('../fonts/Plain-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Plain';
    src: url('../fonts/Plain-Light.woff2') format('woff2'),
        url('../fonts/Plain-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Plain';
    src: url('../fonts/Plain-Bold.woff2') format('woff2'),
        url('../fonts/Plain-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color:        #f13a11;
    --white-color:          #ffffff;
    --dark-color:           #171819;
    --about-bg-color:       #f9f9f9;
    --gray-color:           #909090;
    --link-color:           #404040;
    --p-color:              #666262;
    --base-font-family:     'Plain', sans-serif;
    --font-weight-bold:     bold;
    --font-weight-normal:   normal;
    --font-weight-light:    300;
    --font-weight-thin:     100;
    --h1-font-size:         48px;
    --h2-font-size:         36px;
    --h3-font-size:         28px;
    --h4-font-size:         24px;
    --h5-font-size:         22px;
    --h6-font-size:         22px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --menu-font-size:       14px;
    --border-radius-large:  100%;
    --border-radius-small:  2px;
}

body {
    background: var(--white-color);
    font-family: var(--base-font-family);
}

/*---------------------------------------
 TYPOGRAPHY              
-----------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-thin);
    line-height: normal;
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 20px 0;
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -2px;
}

h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    margin: 0;
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    color: var(--gray-color);
    font-size: var(--h6-font-size);
    line-height: inherit;
    margin: 0;
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
    line-height: 1.5em;
}

b, strong {
    font-weight: var(--font-weight-bold);
    letter-spacing: 0;
}

.section {
    padding: 7rem 0;
}

section[id] {
    scroll-margin-top: 120px;
}

/* BUTTON */

.custom-btn {
    background: transparent;
    border-radius: var(--border-radius-small);
    padding: 14px 24px;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    color: var(--primary-color);
}

.custom-btn:focus {
    box-shadow: none;
}

.custom-btn.bordered:hover,
.custom-btn.bordered:focus,
.custom-btn.bg-color:hover,
.custom-btn.bg-color:focus {
    background: var(--white-color);
    border-color: transparent;
    color: var(--primary-color);
}

.bordered {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.bg-color {
    background: var(--primary-color);
    color: var(--white-color);
}

/*---------------------------------------
 GENERAL               
-----------------------------------------*/

* {
    box-sizing: border-box;
}

a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover, a:active, a:focus {
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
}

/* BG OVERLAY */

.bg-overlay {
    background: var(--dark-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

/*---------------------------------------
 MODAL              
-----------------------------------------*/

.modal-content {
    padding: 2rem 3rem;
}

.modal-header, .modal-body, .modal-footer {
    border: 0;
    padding: 0;
}

.membership-form a {
    color: var(--primary-color);
}

/*---------------------------------------
 FEATURE          
-----------------------------------------*/

.feature {
    background: var(--dark-color);
    padding: 5rem 0;
}

/*---------------------------------------
 MENU             
-----------------------------------------*/

.navbar {
    background: var(--dark-color);
    padding: 1rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.navbar-brand {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    padding-top: 0;
}

.nav-item .nav-link {
    display: block;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    padding: 2px 6px;
}

.nav-item .nav-link.active, .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.navbar .social-icon li a {
    color: var (--white-color);
}

.region-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-left: auto;
}

.region-nav a {
    color: var(--white-color);
    font-size: var(--menu-font-size);
    text-transform: uppercase;
}

.region-nav a:hover {
    color: var(--primary-color);
}

.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
    background: var(--primary-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 30px;
    height: 2px;
    content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
}

/*---------------------------------------
 HERO              
-----------------------------------------*/

.hero {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    vertical-align: middle;
    min-height: 100vh;
    position: relative;
}

/*---------------------------------------
 CLASS               
-----------------------------------------*/

.class-info {
    background: var(--white-color);
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    border-radius: 0 0 2px 2px;
    padding: 1rem 2rem;
    position: relative;
}

.class-info img {
    border-radius: 2px 2px 0 0;
}

.class-info strong {
    color: var(--gray-color);
}

.class-price {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    display: block;
    position: absolute;
    top: -2rem;
    right: 0.1rem;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
}

.service-kicker {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    text-transform: uppercase;
}

/*---------------------------------------
 SEO LOCATIONS
-----------------------------------------*/

.seo-locations {
    background: var(--about-bg-color);
}

.location-card,
.region-contact-box {
    background: var(--white-color);
    border: 1px solid #efebeb;
    border-radius: 6px;
    height: 100%;
    padding: 1.6rem;
}

.location-card {
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 18px 45px rgba(20,20,20,0.10);
    transform: translateY(-4px);
}

.location-card h3,
.region-contact-box h3 {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.location-card p,
.location-card li,
.region-contact-box p,
.region-contact-box li {
    color: var(--p-color);
    font-size: 1rem;
    line-height: 1.55;
}

.location-city {
    align-self: flex-start;
    background: rgba(241, 58, 17, 0.08);
    border: 1px solid rgba(241, 58, 17, 0.18);
    border-radius: 999px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.02em;
    padding: 0.35rem 0.75rem;
    text-transform: uppercase;
}

.location-address {
    border-bottom: 1px solid #efebeb;
    color: var(--dark-color);
    font-weight: var(--font-weight-bold);
    margin: 0;
    padding-bottom: 0.85rem;
}

.location-text {
    margin: 0;
}

.location-list-title {
    color: var(--dark-color);
    display: block;
    font-size: 1rem;
}

.location-card ul,
.region-contact-box ul {
    padding-left: 0;
    margin-bottom: 1rem;
}

.material-list {
    list-style: none;
    margin: 0 0 1.2rem;
}

.material-list li {
    padding-left: 1.4rem;
    position: relative;
}

.material-list li::before {
    background: var(--primary-color);
    border-radius: 50%;
    content: '';
    height: 0.42rem;
    left: 0;
    position: absolute;
    top: 0.58rem;
    width: 0.42rem;
}

.location-link,
.region-link {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

.location-link {
    border-top: 1px solid #efebeb;
    display: block;
    margin-top: auto;
    padding-top: 1rem;
}

.seo-faq details {
    border-bottom: 1px solid #efebeb;
    padding: 1rem 0;
}

.seo-faq summary {
    cursor: pointer;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
}

.seo-faq p {
    margin: 0.8rem 0 0;
}

.region-hero {
    background: var(--about-bg-color);
    padding-top: 10rem;
}

.region-hero h1 {
    color: var(--dark-color);
    font-size: 2.6rem;
    letter-spacing: 0;
}

.region-kicker {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

.region-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 6px;
}

.region-content h2 {
    letter-spacing: 0;
}

/*---------------------------------------
 SCHEDULE             
-----------------------------------------*/

.schedule {
    background: var(--dark-color);
}

.schedule-table {
    display: table;
    border: 0;
    text-align: center;
}

.schedule-table strong,
.schedule-table span {
    display: block;
    text-align: center;
}

.schedule-table strong {
    color: var(--white-color);
}

.schedule-table span {
    color: var(--gray-color);
}

.schedule-table span,
.schedule-table small {
    font-size: var(--menu-font-size);
    text-transform: uppercase;
}

.schedule-table small {
    position: relative;
    top: 10px;
}

.table .thead-light th,
.schedule-table tr td:first-child {
    background: var(--primary-color);
    border: 1px solid #212122;
    color: var(--white-color);
}

.schedule-table .thead-light th {
    border-bottom: 0;
    text-transform: uppercase;
}

.table-bordered td, 
.table-bordered th {
    border: 1px solid #212122;
}

.table-bordered td {
    padding-bottom: 22px;
}

.table td, .table th {
    padding: 1rem;
}

/*---------------------------------------
  ABOUT & TEAM            
-----------------------------------------*/

.about {
    background: var(--about-bg-color);
}

.about-working-hours {
    border-left: 2px solid;
    padding-left: 3.5rem;
}

.about-working-hours strong {
    color: var(--white-color);
    opacity: 0.85;
}

.team-thumb {
    position: relative;
}

.team-info {
    background: var(--white-color);
    border-radius: 0 0 2px 2px;
    box-shadow: 6px 0 38px rgba(20,20,20,0.10);
    padding: 20px;
    position: relative;
}

.team-info span {
    font-weight: var(--font-weight-light);
    opacity: 0.85;
}

.team-info .social-icon {
    position: absolute;
    top: 10px;
    right: 20px;
}

.team-info .social-icon li {
    display: block;
}

/*---------------------------------------
 CONTACT              
-----------------------------------------*/

.webform input,
button#submit-button {
    height: calc(2.25rem + 20px);
}

.form-control {
    border-radius: var(--border-radius-small);
    margin: 1.3rem 0;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--dark-color);
}

button#submit-button {
    background: var(--dark-color);
    border-color: transparent;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

button#submit-button:hover {
    background: var(--primary-color);
}

.contact h2 + p {
    max-width: 90%;
}

.google-map {
    border-top: 1px solid #efebeb;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
}

.map-list {
    display: grid;
    gap: 1.5rem;
}

.map-card {
    border: 1px solid #efebeb;
    border-radius: 6px;
    overflow: hidden;
    background: var(--white-color);
}

.map-card p {
    margin: 0;
    padding: 1rem 1rem 0.8rem;
}

.google-map iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
}

.map-link {
    display: inline-block;
    padding: 0.85rem 1rem 1rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

/*---------------------------------------
 FOOTER              
-----------------------------------------*/

.site-footer {
    border-top: 1px solid #efebeb;
    padding: 3rem 0;
}

.site-footer a {
    color: var(--p-color);
    font-weight: var(--font-weight-light);
}

.site-footer p {
    font-size: var(--base-font-size);
}

.contact .fa,
.site-footer .fa {
    color: var(--primary-color);
}

/*---------------------------------------
 SOCIAL ICON              
-----------------------------------------*/

.social-icon {
    position: relative;
    padding: 0;
    margin: 5px 0 0 0;
}

.social-icon li {
    display: inline-block;
    list-style: none;
}

.social-icon li a {
    text-decoration: none;
    display: inline-block;
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-bold);
    margin: 5px 10px;
    text-align: center;
}

.social-icon li a:hover {
    color: var(--primary-color);
}

/*---------------------------------------
 RESPONSIVE STYLES              
-----------------------------------------*/

@media screen and (max-width: 992px) {
    .section {
        padding: 3rem 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2.15rem;
        line-height: 1.15;
    }

    .service h3 {
        font-size: 1.2rem;
    }

    .region-hero {
        padding-top: 7rem;
    }

    .region-hero h1 {
        font-size: 2rem;
    }

    .region-nav {
        display: none;
    }

    .region-map iframe {
        height: 280px;
    }
}

@media screen and (max-width: 480px) {
    .section {
        padding: 1rem 0;
    }

    .hero h1,
    .region-hero h1 {
        font-size: 1.85rem;
        line-height: 1.15;
    }

    .region-hero {
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    .services-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .service {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        background-color: #333;
        position: relative;
        overflow: hidden;
        aspect-ratio: 1;
        padding: 10px;
    }
    .service:hover {
        transform: translateY(-5px);
    }
    .service h3 {
        font-size: 0.9rem;
        margin: 0;
        padding: 5px 10px;
        color: #333;
        z-index: 1;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 5px;
        position: relative;
        bottom: 50px;
    }
    .service img {
        width: 100%;
        height: 50%;
        object-fit: cover;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    [data-aos] {
        transition-property: opacity, transform;
        transition-duration: 0.5s;
        transition-timing-function: ease-out;
    }
    [data-aos][data-aos][data-aos-delay] {
        transition-delay: 0s;
    }
    [data-aos]:not([data-aos][data-aos-anchor-placement]) {
        transform-origin: center center;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .service h3 {
        font-size: 1.1rem;
        bottom: 60px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .service h3 {
        font-size: 1.2rem;
        bottom: 70px;
    }
}

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

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.services-section {
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.service {
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    max-width: 100%;
    overflow: hidden;
}

.service:hover {
    transform: translateY(-5px);
}

.service img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .service {
        padding: 15px;
    }
    .service h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .service {
        padding: 10px;
    }
    .service h3 {
        font-size: 1rem;
    }
}

/* Calculator */
#calculatorModal .modal-content {
    border: 1px solid #202428;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
}

#calculatorModal .modal-header {
    align-items: center;
    background: #171819;
    border-bottom: 0;
    color: #fff;
    padding: 18px 22px;
}

#calculatorModal .modal-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

#calculatorModal .close {
    color: #fff;
    opacity: 0.75;
    text-shadow: none;
}

#calculatorModal .modal-body {
    background: #fff;
    padding: 22px;
}

.modal-body .info {
    text-align: left;
    color: #6a737f;
    font-size: 14px;
    margin: 0 0 16px;
}

.modal-body .info hr {
    border: none;
    border-top: 1px solid #e2e6eb;
    margin: 10px 0 0;
    width: 100%;
}

.calculator {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    max-width: none;
    padding: 0;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.calculator-field {
    min-width: 0;
}

.calculator label {
    display: block;
    color: #5f6670;
    font-size: 12px;
    font-weight: 800;
    margin: 0 0 7px;
    text-transform: uppercase;
}

.calculator select,
.calculator input {
    display: block;
    width: 100%;
    min-height: 48px;
    border: 1px solid #d8dee6;
    border-radius: 0;
    background-color: #fff;
    color: #171819;
    font-size: 15px;
    padding: 11px 12px;
}

.calculator select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23171819" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
    padding-right: 38px;
}

.calculator select:focus,
.calculator input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(241, 58, 17, 0.12);
    outline: none;
}

.calculator-meta {
    min-height: 20px;
    margin: 7px 0 0;
    color: #6a737f;
    font-size: 13px;
}

.calculator-submit {
    display: block;
    width: 100%;
    min-height: 50px;
    margin: 16px 0 0;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
}

.calculator-submit:hover {
    background: #d8320e;
    border-color: #d8320e;
}

.calculator-result {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    border: 1px solid #e6ebf0;
    border-radius: 0;
    background: #f7f8fa;
    color: #5f6670;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
}

.calculator-result span,
.calculator-result small {
    color: #6a737f;
    font-size: 13px;
    font-weight: 700;
}

.calculator-result strong {
    color: #171819;
    font-size: 28px;
    line-height: 1.1;
}

/* Price table */
.price-catalog {
    width: 100%;
    max-width: 1110px;
    margin: 0 auto;
}

.price-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 0;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    background: transparent;
    padding: 0;
    justify-content: center;
}

.price-button {
    padding: 11px 22px;
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: none;
    border-bottom: 4px solid transparent;
    margin-bottom: -2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.price-button:hover {
    color: rgba(255,255,255,0.86);
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.34);
}

.price-button.active {
    color: #ffffff;
    background: transparent;
    border-bottom-color: var(--primary-color);
    box-shadow: inset 0 -2px 0 var(--primary-color);
}

.price {
    display: none;
    margin-top: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-top: none;
    background: rgba(255,255,255,0.02);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    animation: priceFadeIn 0.25s ease;
}

.price.visible {
    display: block;
}

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

.price h3 {
    margin: 0;
    padding: 0.8rem 1.25rem;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    color: #ffffff;
    background: var(--primary-color);
    text-align: center;
}

.price-table-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.34);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0.5rem 1.25rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.price ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 0.76rem 1.25rem;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.15s ease;
}

.price li:hover {
    background: rgba(255,255,255,0.035);
}

.price li:nth-child(even) {
    background: rgba(255,255,255,0.018);
}

.price li:nth-child(even):hover {
    background: rgba(255,255,255,0.04);
}

.price li:last-child {
    border-bottom: none;
}

.price-row-name {
    min-width: 0;
    color: rgba(255,255,255,0.75);
}

.price-row-value {
    white-space: nowrap;
    color: #f13a11;
    font-size: 15px;
    font-weight: 700;
    text-align: right;
}

.admin-trigger {
    display: inline;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: default;
}

.admin-trigger:focus {
    outline: none;
}

.admin-access-modal .modal-content {
    border: 0;
    border-radius: 8px;
}

.admin-access-modal .modal-title {
    font-size: 20px;
}

.admin-access-error {
    min-height: 20px;
    margin: 10px 0 0;
    color: #d8320e;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    #calculatorModal .modal-dialog {
        margin: 0;
        min-height: 100%;
        max-width: none;
    }

    #calculatorModal .modal-body {
        padding: 16px;
    }

    #calculatorModal .modal-content {
        min-height: 100vh;
        border-left: 0;
        border-right: 0;
    }

    .calculator {
        padding: 0;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .calculator-result strong {
        font-size: 24px;
    }

    .schedule.section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .schedule .text-white {
        font-size: 30px;
        line-height: 1.15;
        text-align: center;
    }

    .schedule .custom-btn {
        max-width: 100%;
        white-space: normal;
        line-height: 1.25;
        text-align: center;
    }

    .price-container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        overflow: visible;
        border-bottom: 2px solid rgba(255,255,255,0.2);
        background: transparent;
        margin: 0 0 0;
        padding: 0;
    }

    .price-button {
        min-width: 0;
        width: 100%;
        border: 0;
        border-bottom: 4px solid transparent;
        border-right: 1px solid rgba(255,255,255,0.06);
        border-radius: 0;
        background: transparent;
        color: rgba(255,255,255,0.74);
        text-align: center;
        padding: 10px 4px;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .price-button.active {
        background: transparent;
        border-bottom-color: var(--primary-color);
        color: #fff;
    }

    .price {
        border: 1px solid rgba(255,255,255,0.07);
        border-top: none;
        background: rgba(255,255,255,0.02);
        overflow: hidden;
    }

    .price h3 {
        border-radius: 0;
        padding: 0.82rem 1rem;
    }

    .price-table-head {
        display: grid;
        padding: 0.5rem 0.9rem;
    }

    .price ul {
        display: block;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .price li {
        grid-template-columns: minmax(0, 1fr) minmax(88px, auto);
        gap: 10px;
        padding: 0.72rem 0.9rem;
        border: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
        background: transparent;
    }

    .price li:nth-child(even) {
        background: rgba(255,255,255,0.018);
    }

    .price-row-value {
        display: block;
        width: auto;
        border-radius: 0;
        background: transparent;
        padding: 0;
        text-align: right;
        white-space: normal;
        overflow-wrap: anywhere;
    }
}

@media screen and (max-width: 480px) {
    .schedule .text-white {
        font-size: 26px;
    }

    .price-button {
        font-size: 11px;
        padding: 10px 5px;
    }

    .price-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-table-head,
    .price li {
        grid-template-columns: minmax(0, 1fr) minmax(82px, auto);
    }
}

/* Hide from search engines */
[hidden] {
    display: none !important;
}
