:root {
    --primary: #e85d04;
    --primary-dark: #c2410c;
    --primary-light: #ff9c47;
    --secondary: #1e3a4d;
    --accent: #0e9384;
    --dark: #0c1014;
    --dark-2: #141a20;
    --light: #ffffff;
    --light-2: #f5f6f8;
    --text-main: #1d2125;
    --text-secondary: #4a5568;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.12);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.15);
    --radius: 18px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bs-primary: #c2410c;
    --bs-primary-rgb: 194, 65, 12;
    --bs-link-color: #c2410c;
    --bs-link-hover-color: #e85d04;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary-dark);
}

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

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

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    letter-spacing: 0.02em;
    border: none;
}

.btn-primary {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 65, 12, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    background: transparent;
    border-radius: 50px;
    padding: 10px 26px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}

.section-title-wrap {
    margin-bottom: 56px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.6;
}

.section-padding {
    padding: 100px 0;
}

.navbar {
    background: transparent;
    transition: var(--transition);
    padding: 22px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar.navbar-scrolled {
    background: rgba(12, 16, 20, 0.96);
    backdrop-filter: blur(14px);
    padding: 14px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.02em;
}

.navbar-brand:hover {
    color: var(--white);
}

.navbar-brand img {
    max-height: 40px;
}

.navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    margin: 0 8px;
    font-size: 14.5px;
    padding: 8px 14px;
    border-radius: 50px;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.navbar .dropdown-menu {
    background: var(--dark-2);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 8px;
    margin-top: 8px;
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
}

.navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.navbar-toggler {
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 24px;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    color: var(--white);
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 16px;
}

.navbar-contact-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-contact-item i {
    color: var(--primary-light);
}

.carousel {
    position: relative;
}

.carousel-item {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 16, 20, 0.78) 0%, rgba(12, 16, 20, 0.5) 50%, rgba(12, 16, 20, 0.35) 100%);
    z-index: 1;
}

.carousel-item .container {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
}

.carousel-indicators {
    margin-bottom: 30px;
    z-index: 5;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.4;
    border: none;
    padding: 0;
}

.carousel-indicators .active {
    opacity: 1;
    width: 36px;
    border-radius: 50px;
    background: var(--primary);
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    position: absolute;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(232, 93, 4, 0.7);
    border-color: transparent;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13.5px;
    font-weight: 500;
    backdrop-filter: blur(4px);
    color: var(--white);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title span {
    color: var(--primary-light);
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.6;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-item .stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
}

.hero-stat-item .stat-lbl {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

.card {
    border-radius: var(--radius);
    border: none;
    overflow: hidden;
    transition: var(--transition);
    background: var(--light);
    box-shadow: var(--shadow);
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    transition: transform 0.6s ease;
    height: 240px;
    object-fit: cover;
    background: var(--light-2);
}

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

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.card-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.card-footer {
    background: transparent;
    border-top: 1px solid var(--border);
    padding: 16px 30px;
}

.card-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(4px);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.stat-box {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
    opacity: 0.4;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 14px;
    margin-right: 2px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 15px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-secondary);
}

.feature-box {
    padding: 36px;
    border-radius: var(--radius);
    background: var(--light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.bg-image-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    color: var(--white);
}

.bg-image-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 16, 20, 0.75) 0%, rgba(12, 16, 20, 0.65) 50%, rgba(12, 16, 20, 0.5) 100%);
    z-index: 0;
}

.bg-image-section .container {
    position: relative;
    z-index: 1;
}

.bg-image-section .section-title {
    color: var(--white);
}

.bg-image-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--light);
}

.accordion-button {
    font-weight: 600;
    padding: 22px 28px;
    background: var(--light);
    color: var(--text-main);
    font-size: 16px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--light-2);
    color: var(--primary-dark);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 20px 28px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 1.5px solid var(--border);
    padding: 14px 18px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--light);
    color: var(--text-main);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.12);
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-main);
}

.form-check-input:checked {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.12);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-2);
    color: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
    z-index: 10000;
    max-width: 500px;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: cookieSlideIn 0.5s ease forwards;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
}

.cookie-banner .cookie-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner .cookie-btns .btn {
    padding: 9px 22px;
    font-size: 14px;
}

.cookie-banner.hidden {
    animation: cookieSlideOut 0.4s ease forwards;
}

@keyframes cookieSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes cookieSlideOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
}

.notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--dark-2);
    color: var(--white);
    padding: 18px 24px;
    border-radius: 14px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: notifyIn 0.4s ease forwards;
    max-width: 380px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14.5px;
}

.notification .notification-icon {
    font-size: 22px;
    color: #2ecc71;
    flex-shrink: 0;
}

.notification.error .notification-icon {
    color: #e74c3c;
}

.notification.hidden {
    animation: notifyOut 0.4s ease forwards;
}

@keyframes notifyIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notifyOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 30px rgba(194, 65, 12, 0.35);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-4px) scale(1.05);
    color: var(--white);
}

.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.82);
    padding: 90px 0 0;
}

.site-footer h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

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

.site-footer ul li {
    margin-bottom: 12px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14.5px;
    transition: var(--transition);
}

.site-footer a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

.site-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14.5px;
}

.site-footer .footer-contact i {
    color: var(--primary-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.site-footer .footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 24px 0;
    margin-top: 70px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    margin-right: 20px;
}

.site-footer .footer-bottom a:hover {
    color: var(--primary-light);
}

.site-footer .social-links {
    display: flex;
    gap: 12px;
}

.site-footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
}

.site-footer .social-links a:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 420px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    display: block;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 260px;
    transition: var(--transition);
    cursor: pointer;
    background: var(--light-2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.gallery-overlay h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.gallery-overlay span {
    font-size: 13px;
    opacity: 0.8;
}

.process-step {
    position: relative;
    padding: 36px 28px;
    border-radius: var(--radius);
    background: var(--light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.3;
    font-family: inherit;
}

.process-step h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14.5px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card {
    border-radius: var(--radius);
    background: var(--light);
    box-shadow: var(--shadow);
    padding: 40px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid var(--border);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--dark);
    color: var(--white);
    border: none;
}

.pricing-card .price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-card.featured .price-label {
    color: var(--primary-light);
}

.pricing-card .price {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 20px;
}

.pricing-card.featured .price {
    color: var(--primary-light);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pricing-card ul li {
    padding: 8px 0;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.pricing-card.featured ul li {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-card ul li i {
    color: var(--accent);
    font-size: 13px;
}

.pricing-card.featured ul li i {
    color: var(--primary-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 540px;
}

.team-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    background: var(--light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.text-primary-soft {
    color: var(--primary-dark);
}

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

.bg-dark-section .section-title {
    color: var(--white);
}

.bg-dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.bg-light-section {
    background: var(--light-2);
}

.rounded-20 {
    border-radius: var(--radius);
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}

.img-placeholder {
    background: var(--light-2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.img-placeholder i {
    font-size: 48px;
    color: #d1d5db;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 0;
}

.spinner-border-sm {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 64px 0;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .navbar-collapse {
        background: rgba(12, 16, 20, 0.98);
        border-radius: 16px;
        padding: 20px;
        margin-top: 12px;
        border: 1px solid var(--border-dark);
        max-height: 80vh;
        overflow-y: auto;
    }
    .navbar .navbar-nav .nav-link {
        margin: 6px 0;
        padding: 10px 14px;
    }
    .navbar-contact {
        margin-left: 0;
        margin-top: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
        border-top: 1px solid var(--border-dark);
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .carousel-control-prev {
        left: 8px;
    }
    .carousel-control-next {
        right: 8px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 1.9rem;
    }
    .hero-text {
        font-size: 1rem;
    }
    .cookie-banner {
        padding: 18px;
        max-width: 100%;
        width: calc(100% - 24px);
        left: 50%;
        transform: translateX(-50%);
    }
    .notification {
        left: 12px;
        right: 12px;
        max-width: none;
    }
    .stat-number {
        font-size: 2.4rem;
    }
    .pricing-card {
        padding: 28px 20px;
    }
    .map-wrapper,
    .map-wrapper iframe {
        min-height: 300px;
    }
    .gallery-item {
        height: 200px;
    }
    .cta-section h2 {
        font-size: 1.7rem;
    }
}