/* Подключение шрифтов */
@font-face {
    font-family: 'Benzin';
    src: url('/static/fonts/Benzin-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Основные стили */
body {
    font-family: 'Benzin', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: transparent;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Benzin';
    src: url('/static/fonts/Benzin-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Benzin';
    src: url('/static/fonts/Benzin-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Benzin';
    src: url('/static/fonts/Benzin-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Benzin';
    src: url('/static/fonts/Benzin-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* Стили для страницы услуг */

/* Навигация страницы */
.page-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 0 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.back-btn {
    color: #00ff88;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    transform: translateX(-5px);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Фильтры */
.filters-section {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
}

.filter-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.filter-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateY(-2px);
}

.filter-tab.active {
    background: linear-gradient(45deg, #FF6B6B, #8B0000);
    border-color: #FF6B6B;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Сетка услуг */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 32px;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Обёртка под ту же ширину, что и сетка карточек */
.promo-code-wrapper {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Выпадающий список: кнопка-триггер + раскрывающаяся панель */
.promo-engineers-select {
    position: relative;
}

.promo-engineers-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 0;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Benzin', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    backdrop-filter: blur(12px);
}

.promo-engineers-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(119, 246, 1, 0.35);
}

.promo-engineers-select.is-open .promo-engineers-trigger {
    background: rgba(119, 246, 1, 0.12);
    border-color: rgba(119, 246, 1, 0.45);
    color: #77F601;
}

.promo-engineers-trigger-icon {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.promo-engineers-select.is-open .promo-engineers-trigger-icon {
    transform: rotate(180deg);
}

.promo-engineers-dropdown {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.25s ease, padding 0.25s ease;
    margin-top: 0;
    padding: 0 0 0 0;
}

.promo-engineers-select.is-open .promo-engineers-dropdown {
    max-height: 420px;
    opacity: 1;
    margin-top: 12px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow-y: auto;
}

.promo-code-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}

/* Сетка карточек звукорежиссёров внутри выпадающего списка */
.promo-engineers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.promo-engineer-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
    font-family: inherit;
    white-space: nowrap;
    backdrop-filter: blur(12px);
}

.promo-engineer-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(119, 246, 1, 0.35);
    color: #fff;
}

.promo-engineer-card.active {
    background: rgba(119, 246, 1, 0.2);
    border-color: rgba(119, 246, 1, 0.5);
    color: #77F601;
}

.promo-engineer-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.promo-engineer-avatar-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(119, 246, 1, 0.25);
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.75rem;
    font-weight: 600;
}

.promo-engineer-avatar--none {
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.promo-engineer-name {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

/* Поочерёдное появление карточек при открытии */
@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: cardReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.12s; }
.service-card:nth-child(3) { animation-delay: 0.19s; }
.service-card:nth-child(4) { animation-delay: 0.26s; }
.service-card:nth-child(5) { animation-delay: 0.33s; }
.service-card:nth-child(6) { animation-delay: 0.40s; }
.service-card:nth-child(7) { animation-delay: 0.47s; }
.service-card:nth-child(8) { animation-delay: 0.54s; }
.service-card:nth-child(9) { animation-delay: 0.61s; }
.service-card:nth-child(10) { animation-delay: 0.68s; }
.service-card:nth-child(11) { animation-delay: 0.75s; }
.service-card:nth-child(12) { animation-delay: 0.82s; }

/* Бейдж «Хит» только на услуге «Запись вокала» — мягкий цвет, тонкий шрифт */
.service-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 8px;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.service-card-badge--hit {
    background: rgba(80, 55, 100, 0.55);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(140, 110, 160, 0.4);
}

.service-card-badge--novichku {
    background: rgba(100, 180, 255, 0.45);
    color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(150, 200, 255, 0.4);
}

/* Skeleton loader для карточек */
.skeleton {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    animation: skeletonPulse 1.5s ease-in-out infinite !important;
    pointer-events: none;
}

.skeleton .service-image {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

.skeleton .service-price {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(26, 10, 46, 0.3) 25%,
        rgba(22, 33, 62, 0.3) 50%,
        rgba(15, 52, 96, 0.3) 75%,
        rgba(0, 0, 0, 0.3) 100%
    ) !important;
}

.skeleton .service-title,
.skeleton .price {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
    color: transparent !important;
    min-height: 1em;
}

.skeleton .service-title {
    width: 80%;
    margin: 0 auto 8px;
    height: 16px;
}

.skeleton .price {
    width: 60%;
    margin: 0 auto;
    height: 20px;
}

@keyframes skeletonPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes skeletonShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(119, 246, 1, 0.3);
    box-shadow: 0 15px 40px rgba(119, 246, 1, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}


.service-image {
    width: 100%;
    height: 180px;
    flex: 0 0 180px;
    margin: 0;
    position: relative;
    z-index: 2;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}


.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

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

.service-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.1;
    padding: 0;
    position: relative;
    z-index: 2;
}

.service-price {
    margin: 0;
    flex: 1 1 auto;
    min-height: 0;
    text-align: center;
    padding: 8px 10px 12px 10px;
    background: linear-gradient(135deg, #000000 0%, #1a0a2e 25%, #16213e 50%, #0f3460 75%, #000000 100%);
    border-radius: 0 0 16px 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(119, 246, 1, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(196, 0, 251, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(112, 0, 220, 0.1) 0%, transparent 40%);
    pointer-events: none;
    border-radius: 0 0 16px 16px;
}

/* Анимация при смене города */
@keyframes price-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.service-card .price.price-updating {
    animation: price-pulse 0.4s ease-out;
}

/* ВАРИАНТ 1: Белый + зеленый акцент на ₽ */
.price {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price .currency {
    color: #77F601;
    font-weight: 600;
    margin-left: 2px;
}

/* Приписка «от» в карточках — везде один приглушённый цвет (не белый) */
.service-card .price .from,
.services-grid .price .from,
.price .from {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500;
    font-size: 0.85rem;
    margin-right: 4px;
}

/* ВАРИАНТ 2: Градиентный стиль */
/* .price {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #77F601, #C400FB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
}

.price .currency {
    color: #77F601;
    font-weight: 600;
    margin-left: 2px;
}

.price .from {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.85rem;
    margin-right: 4px;
} */

/* ВАРИАНТ 3: Контрастная подложка */
/* .price {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid rgba(119, 246, 1, 0.3);
}

.price .currency {
    color: #77F601;
    font-weight: 600;
    margin-left: 2px;
}

.price .from {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.85rem;
    margin-right: 4px;
} */

/* ВАРИАНТ 4: Пастельный акцент */
/* .price {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price .currency {
    color: rgba(119, 246, 1, 0.8);
    font-weight: 600;
    margin-left: 2px;
    text-shadow: 0 0 8px rgba(119, 246, 1, 0.5);
}

.price .from {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.85rem;
    margin-right: 4px;
} */

/* ВАРИАНТ 5: Минималистичный */
/* .price {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
}

.price .currency {
    color: #77F601;
    font-weight: 700;
    margin-left: 2px;
    font-size: 1.1rem;
}

.price .from {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 0.8rem;
    margin-right: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
} */

.service-details {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

/* Дополнительные акценты - зеленые и фиолетовые */
.service-card:nth-child(odd)::before {
    background: radial-gradient(circle, rgba(119, 246, 1, 0.4) 0%, transparent 70%);
}

.service-card:nth-child(even)::after {
    background: radial-gradient(circle, rgba(119, 246, 1, 0.3) 0%, transparent 60%);
}

/* Фиолетовые акценты для некоторых карточек */
.service-card:nth-child(5)::before {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 70%);
}

.service-card:nth-child(10)::before {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 70%);
}

.service-card:nth-child(11)::after {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 60%);
}

/* CTA секция */
.cta-section {
    text-align: center;
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    border: 2px solid #00ff88;
    margin: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.3s;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000000;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.4);
}

/* Модальное окно */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.1);
}

.modal-body {
    padding: 30px;
}

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

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    background: rgba(255, 255, 255, 0.08);
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #FF6B6B, #8B0000);
    border: none;
    color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 700px;
    }
    .promo-code-wrapper {
        max-width: 700px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .page-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
        max-width: 500px;
    }
    .promo-code-wrapper {
        max-width: 500px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-image {
        height: 150px;
        flex: 0 0 150px;
        margin: 0;
    }
    
    .service-title {
        font-size: 0.7rem;
    }
    
    .price {
        font-size: 0.9rem;
    }
    
    .service-card .price .from,
    .price .from {
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 0.75rem;
    }
    
    .cta-section {
        margin: 0 10px;
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 5px;
        max-width: 400px;
    }
    .promo-code-wrapper {
        max-width: 400px;
        padding: 0 5px;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-image {
        height: 120px;
        flex: 0 0 120px;
        margin: 0;
    }
    
    .service-title {
        font-size: 0.65rem;
    }
    
    .price {
        font-size: 0.8rem;
    }
    
    .service-card .price .from,
    .price .from {
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 0.7rem;
    }
    
    .service-details {
        font-size: 0.8rem;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
}
