@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap");
:root {
    --primary: #1b1b2f;
    --primary-light: #2d2d40;
    --accent: #c9a227;
    --accent-hover: #a8871b;
    --accent-rgb: 201, 162, 39;
    --light-bg: #faf7f2;
    --dark-bg: #0d0d1a;
    --text-main: #2d2d2d;
    --text-inverse: #f8f5f1;
    --text-muted-color: #8a8a8a;
    --border-color: #e8e2d8;
    --border-dark: #2d2d3d;
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, .06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: all .3s cubic-bezier(.25, .46, .45, .94);
    --section-padding: 100px 0;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-main);
    background-color: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--primary);
}
h1 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    letter-spacing: -0.02em;
}
h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: -0.01em;
}
h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}
h4 {
    font-size: 1.25rem;
}
h5 {
    font-size: 1.1rem;
}
h6 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
p {
    margin-bottom: 1rem;
}
a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--accent);
}
img {
    max-width: 100%;
    height: auto;
}
.section-padding {
    padding: var(--section-padding);
}
.section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    margin-bottom: 1.2rem;
    position: relative;
}
.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.section-heading {
    max-width: 720px;
    margin-bottom: 50px;
}
.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.text-accent {
    color: var(--accent) !important;
}
.bg-primary-dark {
    background-color: var(--primary) !important;
}
.bg-light-warm {
    background-color: var(--light-bg) !important;
}
.bg-dark-base {
    background-color: var(--dark-bg) !important;
}
.btn {
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 32px;
    transition: var(--transition);
    letter-spacing: 0.03em;
    border: 2px solid transparent;
}
.btn-accent {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-accent:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.35);
}
.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline-accent:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.25);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-primary-custom {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary-custom:hover {
    background-color: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 27, 47, 0.3);
}
.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}
.btn-lg {
    padding: 14px 40px;
    font-size: 1.05rem;
}
#inject-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.site-header {
    background: rgba(27, 27, 47, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 15px 0;
    transition: var(--transition);
}
.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: rgba(27, 27, 47, 0.98);
}
.site-header .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}
.site-header .navbar-brand img {
    margin-right: 10px;
}
.site-header .navbar-brand span {
    color: var(--accent);
}
.site-header .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: var(--transition);
    letter-spacing: 0.02em;
}
.site-header .nav-link:hover {
    color: var(--accent) !important;
}
.site-header .nav-link.active {
    color: var(--accent) !important;
}
.site-header .navbar-toggler {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.5rem;
    padding: 5px 10px;
}
.site-header .navbar-toggler:focus {
    box-shadow: none;
}
.site-header .header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}
.site-header .header-contacts span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
}
.site-header .header-contacts i {
    color: var(--accent);
    margin-right: 6px;
    font-size: 0.9rem;
}
@media (max-width: 991.98px) {
    .site-header .header-contacts {
        display: none;
    }
    .site-header .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .site-header .navbar-collapse {
        background: var(--primary);
        border-radius: var(--radius-md);
        padding: 15px;
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
    }
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--dark-bg);
}
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    z-index: 0;
}
.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-slider .slide-content .hero-badge {
    display: inline-block;
    background: rgba(var(--accent-rgb), 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.hero-slider .slide-content h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero-slider .slide-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
}
.hero-slider .slide-content .hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-slider .slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-slider .slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero-slider .slider-dots .dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.3);
}
.hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}
.hero-slider .slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.hero-slider .slider-arrow.prev {
    left: 30px;
}
.hero-slider .slider-arrow.next {
    right: 30px;
}
@media (max-width: 767.98px) {
    .hero-slider .slider-arrow {
        display: none;
    }
}
.feature-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: var(--transition);
}
.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    border-color: transparent;
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.6rem;
    color: var(--accent);
    transition: var(--transition);
}
.feature-card:hover .icon-wrapper {
    background: var(--accent);
    color: #fff;
    transform: rotateY(180deg);
}
.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted-color);
    line-height: 1.6;
    margin-bottom: 0;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}
.service-card .service-image {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .service-image img {
    transform: scale(1.05);
}
.service-card .service-body {
    padding: 30px;
}
.service-card .service-body .service-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.service-card .service-body .service-desc {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    margin-bottom: 20px;
}
.service-card .service-body .service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}
.service-card .service-body .service-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 700;
}
.service-card .service-body .service-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
}
.service-card .service-body .service-link:hover {
    color: var(--accent);
    text-decoration: none;
}
.stat-item {
    text-align: center;
    padding: 30px 15px;
}
.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}
.stat-item .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}
.about-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}
.about-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}
.team-member {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}
.team-member:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.team-member .team-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #f0ebe3;
}
.team-member .team-info {
    padding: 20px;
}
.team-member .team-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.team-member .team-info .team-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    height: 100%;
}
.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.testimonial-card .testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}
.testimonial-card .testimonial-author .author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
}
.testimonial-card .testimonial-author .author-name {
    font-weight: 600;
    font-size: 0.95rem;
}
.testimonial-card .testimonial-author .author-position {
    font-size: 0.8rem;
    color: var(--text-muted-color);
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
    min-height: 80px;
}
.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}
.partner-logo img {
    max-height: 40px;
}
.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.95rem;
    background: #fff;
    transition: var(--transition);
    margin-bottom: 20px;
}
.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(var(--accent-rgb), 0.1);
}
.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.contact-form .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--primary);
}
.contact-info-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 15px;
    transition: var(--transition);
    height: 100%;
}
.contact-info-card:hover {
    box-shadow: var(--shadow-md);
}
.contact-info-card .info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(var(--accent-rgb), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-info-card .info-content {
    flex: 1;
}
.contact-info-card .info-content h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.contact-info-card .info-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted-color);
    line-height: 1.5;
}
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}
#inject-footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    margin-top: auto;
}
.site-footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    margin-top: auto;
}
.site-footer h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer .footer-links li {
    margin-bottom: 10px;
}
.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.site-footer .footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
    text-decoration: none;
}
.site-footer .footer-links a i {
    font-size: 0.7rem;
    color: var(--accent);
}
.site-footer .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer .footer-contact li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
}
.site-footer .footer-contact li i {
    color: var(--accent);
    margin-top: 5px;
    font-size: 0.85rem;
}
.site-footer .footer-contact li#address-adr span {
    display: block;
}
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    margin-top: 60px;
    font-size: 0.85rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-bottom a {
    color: var(--accent);
}
.site-footer .footer-bottom a:hover {
    text-decoration: underline;
}
.site-footer .footer-social {
    display: flex;
    gap: 10px;
}
.site-footer .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: var(--transition);
}
.site-footer .footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 20px 30px;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 2px solid var(--accent);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-consent.show {
    transform: translateY(0);
}
.cookie-consent .cookie-content {
    flex: 1;
    min-width: 200px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}
.cookie-consent .cookie-content i {
    color: var(--accent);
    margin-right: 8px;
}
.cookie-consent .cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-consent .btn-cookie-accept {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}
.cookie-consent .btn-cookie-accept:hover {
    background: var(--accent-hover);
}
.cookie-consent .btn-cookie-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}
.cookie-consent .btn-cookie-reject:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    max-width: 400px;
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(.25, .46, .45, .94);
    border-left: 4px solid var(--accent);
}
.toast-notification.show {
    transform: translateX(0);
}
.toast-notification .toast-icon {
    font-size: 1.5rem;
    color: var(--accent);
}
.toast-notification .toast-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.4;
}
.toast-notification.toast-error {
    border-left-color: #dc3545;
}
.toast-notification.toast-error .toast-icon {
    color: #dc3545;
}
.toast-notification.toast-success {
    border-left-color: #28a745;
}
.toast-notification.toast-success .toast-icon {
    color: #28a745;
}
.page-hero {
    position: relative;
    padding: 180px 0 80px;
    background-size: cover;
    background-position: center;
    background-color: var(--dark-bg);
    text-align: center;
}
.page-hero h1 {
    color: #fff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.page-hero .breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}
.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}
.page-hero .breadcrumb-item.active {
    color: var(--accent);
}
.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}
.cta-section {
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
    padding: 80px 0;
}
.cta-section h2 {
    color: #fff;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.8);
}
.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.faq-item:hover {
    box-shadow: var(--shadow-md);
}
.faq-item .faq-question {
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item .faq-question i {
    color: var(--accent);
    transition: var(--transition);
    font-size: 0.9rem;
}
.faq-item .faq-answer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted-color);
    line-height: 1.7;
    display: none;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    display: block;
}
.price-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.price-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}
.price-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 10px 40px rgba(var(--accent-rgb), 0.15);
}
.price-card.featured .price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 20px;
}
.price-card .price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}
.price-card .price-amount span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted-color);
}
.price-card .price-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}
.price-card .price-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-card .price-features li:last-child {
    border-bottom: none;
}
.price-card .price-features li i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.process-step .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.3);
}
.process-step .step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -60px;
    width: 120px;
    height: 2px;
    background: rgba(var(--accent-rgb), 0.3);
    z-index: 1;
}
.process-step:last-child .step-number::after {
    display: none;
}
.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted-color);
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-color: #f0ebe3;
}
.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 27, 47, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item .gallery-overlay h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}
.gallery-item .gallery-overlay span {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.blog-card .blog-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card .blog-body {
    padding: 25px;
}
.blog-card .blog-body .blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted-color);
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}
.blog-card .blog-body .blog-meta i {
    color: var(--accent);
    margin-right: 4px;
}
.blog-card .blog-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.blog-card .blog-body p {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    margin-bottom: 15px;
    line-height: 1.6;
}
.blog-card .blog-body .read-more {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
}
.blog-card .blog-body .read-more:hover {
    text-decoration: underline;
}
.pagination .page-link {
    color: var(--primary);
    border-color: var(--border-color);
    border-radius: 8px;
    margin: 0 4px;
    padding: 8px 16px;
    font-weight: 500;
}
.pagination .page-link:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px 0;
    }
    .hero-slider .slide-content h1 {
        font-size: 2rem;
    }
    .stat-item .stat-number {
        font-size: 2rem;
    }
    .site-footer {
        padding-top: 50px;
    }
    .cookie-consent {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .process-step .step-number::after {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
    .site-header .header-contacts {
        display: none;
    }
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
::selection {
    background: rgba(var(--accent-rgb), 0.4);
    color: var(--primary);
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.4);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}
/* Accessibility contrast overrides */
.hero .hero-badge,
.hero-slider .slide-content .hero-badge {
    color: #ffffff !important;
    border-color: #f0d068 !important;
    background: rgba(0, 0, 0, 0.45) !important;
}
.section-subtitle {
    color: #6b4e00 !important;
}
.blog-card .blog-body .blog-meta,
.blog-card .blog-body p {
    color: #4a4a4a !important;
}
.blog-card .blog-body .read-more {
    color: #6b4e00 !important;
}
.btn-outline-accent {
    color: #6b4e00 !important;
    border-color: #6b4e00 !important;
}
.btn-outline-accent:hover {
    background-color: #6b4e00 !important;
    border-color: #6b4e00 !important;
    color: #ffffff !important;
}
.btn-accent {
    background-color: #6e5510 !important;
    border-color: #6e5510 !important;
    color: #ffffff !important;
}
.btn-accent:hover {
    background-color: #5a450c !important;
    border-color: #5a450c !important;
    color: #ffffff !important;
}

/* ===== Accessibility / contrast overrides (contacts page & global) ===== */
.hero .hero-badge {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
}
.section-subtitle {
    color: #7a5c00 !important;
}
.contact-info-card .info-content p {
    color: #3f3f3f !important;
}
.btn-accent,
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
    color: #1b1b2f !important;
}
.service-card .service-body .service-price {
    color: #7a5c00 !important;
}
.contact-form a {
    color: #7a5c00 !important;
}

/* ========== QA contrast & usability overrides ========== */
:root {
    --text-muted-color: #5f5f5f;
    --accent-dark: #6f5413;
    --accent-solid: #8a6d1a;
}
/* Hero badge on dark hero background */
.hero .hero-badge {
    color: #ffffff !important;
    background: rgba(var(--accent-rgb), 0.22) !important;
    border: 1px solid var(--accent) !important;
}
/* Accent text on light backgrounds -> darker gold for contrast */
.section-subtitle { color: var(--accent-dark) !important; }
.team-member .team-info .team-role { color: var(--accent-dark) !important; }
.btn-outline-accent { color: var(--accent-dark) !important; border-color: var(--accent-dark) !important; }
/* Accent buttons / numbered steps -> darker fill so white text passes */
.btn-accent { background-color: var(--accent-solid) !important; border-color: var(--accent-solid) !important; }
.btn-accent:hover { background-color: var(--accent-dark) !important; border-color: var(--accent-dark) !important; }
.process-step .step-number { background-color: var(--accent-solid) !important; }
/* Gallery overlays always visible with solid dark background */
.gallery-item .gallery-overlay { opacity: 1 !important; background: #1b1b2f !important; }
.gallery-item .gallery-overlay h5 { color: #ffffff !important; }
.gallery-item .gallery-overlay span { color: #e8c96a !important; }

/* ===== Final QA contrast & usability overrides ===== */
/* Hero badge: solid dark background so white text passes contrast */
.hero .hero-badge,
.hero-slider .slide-content .hero-badge {
    color: #ffffff !important;
    background: #000000 !important;
    border: 1px solid #e8c96a !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
/* Accent buttons: darker gold fill with white text for strong contrast */
.btn-accent,
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active,
.btn-accent.btn-lg,
.btn-accent.mt-3,
.btn-accent.w-100 {
    background-color: #6e5510 !important;
    border-color: #6e5510 !important;
    color: #ffffff !important;
}
/* Author avatar initials: dark gold text on light background */
.testimonial-card .testimonial-author .author-avatar {
    color: #5a450c !important;
}

/* ===== Designer Notebooks page QA contrast fixes ===== */
/* Hero breadcrumb + title on dark background */
.hero .hero-content .breadcrumb-item a,
.hero .breadcrumb-item a { color: #f0e6c8 !important; }
.hero .hero-content .breadcrumb-item.active,
.hero .breadcrumb-item.active { color: #ffffff !important; }
.hero .hero-content h1,
.hero h1 { color: #ffffff !important; }

/* Accent text on light backgrounds -> darker gold for contrast */
.text-accent { color: #6f5413 !important; }

/* Section subtitles default dark gold (light backgrounds) */
.section-subtitle { color: #6f5413 !important; }

/* Section subtitles on dark backgrounds (Key Figures + Contact) */
.bg-primary-dark .section-subtitle,
section[style*="var(--primary)"] .section-subtitle { color: #e8c96a !important; }

/* Accent buttons: white text on darker gold fill */
.btn-accent,
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active { background-color: #5a450c !important; border-color: #5a450c !important; color: #ffffff !important; }

/* Price badge contrast */
.price-card.featured .price-badge { background-color: #5a450c !important; color: #ffffff !important; }

/* ===== Price page QA fixes ===== */
/* Ensure fixed header does not overlap the hero content on small screens */
@media (max-width: 767.98px) {
    .hero {
        padding-top: 80px;
    }
}
