@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --brand-primary: #0f2e22;
    --brand-primary-light: #1b4d3a;
    --brand-accent: #b45c28;
    --brand-accent-light: #d97a48;
    --brand-accent-dark: #9d4f24;
    --brand-cream: #f7f4ee;
    --brand-cream-dark: #efe9df;
    --brand-white: #ffffff;
    --brand-dark: #071912;
    --brand-green-soft: #d8e3dc;
    --brand-border: #e2dcd0;
    --text-body: #33453e;
    --text-heading: #0d2a20;
    --text-on-dark: #f2ede4;
    --text-link: #1b4d3a;
    --text-accent: #9d4f24;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 16px rgba(13, 42, 32, 0.06);
    --shadow-md: 0 8px 32px rgba(13, 42, 32, 0.1);
    --shadow-lg: 0 24px 64px rgba(13, 42, 32, 0.16);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 32px;
    --transition-base: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.65;
    background: var(--brand-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-heading);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
}

h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--text-link);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--brand-accent-dark);
    text-decoration: none;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--brand-primary-light);
    border-radius: 10px;
}

.section-bg-cream {
    background: var(--brand-cream);
}

.section-bg-dark {
    background: var(--brand-primary);
    color: var(--text-on-dark);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
    color: var(--text-on-dark);
}

.section-bg-dark p {
    color: rgba(242, 237, 228, 0.85);
}

.text-accent {
    color: var(--text-accent) !important;
}

.text-accent-light {
    color: var(--brand-accent-light) !important;
}

.text-dark-green {
    color: var(--text-heading) !important;
}

.text-muted {
    color: var(--text-body) !important;
    opacity: 0.75;
}

.bg-primary-brand {
    background: var(--brand-primary) !important;
}

.bg-accent-brand {
    background: var(--brand-accent) !important;
}

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    transition: var(--transition-base);
    border: 2px solid transparent;
    letter-spacing: 0.02em;
}

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

.btn-primary:hover {
    background: var(--brand-primary-light);
    border-color: var(--brand-primary-light);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--brand-white);
}

.btn-accent:hover {
    background: var(--brand-accent-dark);
    border-color: var(--brand-accent-dark);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border-color: rgba(242, 237, 228, 0.6);
    color: var(--text-on-dark);
}

.btn-outline-light:hover {
    background: var(--text-on-dark);
    color: var(--brand-dark);
    border-color: var(--text-on-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.btn-outline-primary:hover {
    background: var(--brand-primary);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.navbar {
    padding: 20px 0;
    transition: var(--transition-base);
    z-index: 1030;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-scrolled {
    background: var(--brand-white);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
    border-bottom: 1px solid var(--brand-border);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-on-dark);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-scrolled .navbar-brand {
    color: var(--text-heading);
}

.navbar-brand img {
    border-radius: 8px;
}

.navbar .nav-link {
    color: rgba(242, 237, 228, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 16px !important;
    margin: 0 2px;
    border-radius: 30px;
    transition: var(--transition-base);
}

.navbar-scrolled .nav-link {
    color: var(--text-body);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--brand-accent-light);
}

.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active {
    color: var(--brand-accent-dark);
}

.navbar-toggler {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    color: var(--text-on-dark);
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-base);
}

.navbar-scrolled .navbar-toggler {
    color: var(--text-heading);
}

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

.navbar-toggler-icon {
    display: none;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 20px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-on-dark);
}

.navbar-scrolled .header-contact-item {
    color: var(--text-body);
}

.header-contact-item i {
    color: var(--brand-accent-light);
    font-size: 1rem;
}

.navbar-scrolled .header-contact-item i {
    color: var(--brand-accent);
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 160px 0 100px;
    color: var(--text-on-dark);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(15, 46, 34, 0.6));
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--text-on-dark);
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    margin-bottom: 24px;
}

.hero p {
    color: rgba(242, 237, 228, 0.9);
    font-size: 1.15rem;
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(242, 237, 228, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-on-dark);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge i {
    color: var(--brand-accent-light);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-on-dark);
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(242, 237, 228, 0.7);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}

.page-header {
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 140px 0 80px;
    color: var(--text-on-dark);
}

.page-header h1 {
    color: var(--text-on-dark);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(242, 237, 228, 0.9);
    max-width: 560px;
    font-size: 1.05rem;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(242, 237, 228, 0.7);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.breadcrumb-custom a {
    color: rgba(242, 237, 228, 0.7);
}

.breadcrumb-custom a:hover {
    color: var(--brand-accent-light);
}

.breadcrumb-custom i {
    font-size: 0.6rem;
    color: rgba(242, 237, 228, 0.4);
}

.carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.carousel-item {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7, 25, 18, 0.75), rgba(7, 25, 18, 0.15));
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 60px 40px;
    text-align: left;
    z-index: 2;
    max-width: 640px;
}

.carousel-caption h3 {
    color: var(--text-on-dark);
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.carousel-caption p {
    color: rgba(242, 237, 228, 0.85);
    margin-bottom: 24px;
}

.carousel-indicators {
    position: absolute;
    right: 40px;
    bottom: 40px;
    left: auto;
    margin: 0;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(242, 237, 228, 0.5) !important;
    background: transparent !important;
    opacity: 1 !important;
    transition: var(--transition-base);
}

.carousel-indicators button.active {
    background: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
    transform: scale(1.3);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
    width: 50px;
    height: 50px;
    top: auto;
    bottom: 36px;
    border-radius: 50%;
    background: rgba(242, 237, 228, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(242, 237, 228, 0.25);
    transition: var(--transition-base);
}

.carousel-control-prev {
    right: 96px;
    left: auto;
}

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--brand-accent);
    border-radius: 2px;
}

.section-label.section-label-center::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--brand-accent);
    border-radius: 2px;
}

.section-label.section-label-center {
    justify-content: center;
}

.section-label-light {
    color: var(--brand-accent-light);
}

.section-label-light::before,
.section-label-light::after {
    background: var(--brand-accent-light);
}

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

.section-padding-sm {
    padding: 60px 0;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    max-width: 640px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-title-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.card {
    border: none;
    border-radius: var(--radius-md);
    background: var(--brand-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    overflow: hidden;
    height: 100%;
}

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

.card-img-top,
.card img {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card-body {
    padding: 28px;
}

.card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.card-link:hover {
    gap: 14px;
    color: var(--brand-primary);
}

.card-link i {
    font-size: 0.8rem;
    transition: var(--transition-base);
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--brand-cream);
    border: 1px solid var(--brand-border);
    height: 100%;
    transition: var(--transition-base);
    padding: 36px 28px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-accent);
    background: var(--brand-white);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-green-soft);
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--brand-primary);
    transition: var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--brand-accent);
    color: var(--brand-white);
    transform: rotate(-8deg) scale(1.05);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--text-body);
}

.service-card-list li i {
    color: var(--brand-accent);
    font-size: 0.8rem;
}

.price-card {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-border);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    height: 100%;
}

.price-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: var(--brand-accent-light);
}

.price-card-featured {
    background: var(--brand-primary);
    color: var(--text-on-dark);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-lg);
}

.price-card-featured h3,
.price-card-featured .price-amount,
.price-card-featured .price-period {
    color: var(--text-on-dark);
}

.price-card-featured p {
    color: rgba(242, 237, 228, 0.85);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-accent);
    color: var(--brand-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 18px;
    border-radius: 30px;
    white-space: nowrap;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.1;
    margin: 20px 0 6px;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-body);
}

.price-card-featured .price-features li {
    color: rgba(242, 237, 228, 0.9);
}

.price-features li i {
    color: var(--brand-accent);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.price-card-featured .price-features li i {
    color: var(--brand-accent-light);
}

.price-features li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.testimonial-card {
    background: var(--brand-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--brand-border);
    padding: 32px;
    height: 100%;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-accent-light);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--brand-accent);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--brand-primary);
    font-size: 1rem;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 0.95rem;
}

.testimonial-author-role {
    font-size: 0.83rem;
    color: var(--text-body);
    opacity: 0.75;
}

.section-stats {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-on-dark);
    line-height: 1.1;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(242, 237, 228, 0.8);
}

.form-control {
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--brand-white);
    transition: var(--transition-base);
    height: auto;
}

.form-control:focus {
    border-color: var(--brand-primary-light);
    box-shadow: 0 0 0 3px rgba(27, 77, 58, 0.12);
    outline: none;
    color: var(--text-body);
    background: var(--brand-white);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

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

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

.form-section {
    background: var(--brand-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-border);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.form-notification {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    font-size: 0.92rem;
    line-height: 1.5;
    animation: notification-in 0.4s ease;
}

.form-notification i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-notification.success {
    background: #e7f2eb;
    border: 1px solid #a5ccb4;
    color: #1b4d3a;
}

.form-notification.success i {
    color: #1b4d3a;
}

.form-notification.error {
    background: #fdeae7;
    border: 1px solid #ed9b8f;
    color: #9d2f1f;
}

.form-notification.error i {
    color: #9d2f1f;
}

.form-notification.fade-out {
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.4s ease;
}

@keyframes notification-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background: var(--brand-dark);
    color: rgba(242, 237, 228, 0.7);
    padding: 80px 0 0;
    font-size: 0.92rem;
}

.footer h4 {
    color: var(--text-on-dark);
    font-family: var(--font-display);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer a {
    color: rgba(242, 237, 228, 0.7);
}

.footer a:hover {
    color: var(--brand-accent-light);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--brand-accent-light);
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: var(--brand-accent-light);
    font-size: 1rem;
    margin-top: 4px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(242, 237, 228, 0.12);
    padding: 24px 0;
    margin-top: 60px;
    font-size: 0.83rem;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-legal-links a {
    color: rgba(242, 237, 228, 0.6);
}

.footer-legal-links a:hover {
    color: var(--brand-accent-light);
}

.footer-reg-info {
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(242, 237, 228, 0.45);
    text-align: center;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background: var(--brand-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 24px 28px;
    max-width: 540px;
    margin: 0 auto;
    transform: translateY(140%);
    opacity: 0;
    transition: all 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--brand-border);
}

.cookie-banner-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner p {
    font-size: 0.87rem;
    color: var(--text-body);
    margin-bottom: 18px;
    line-height: 1.6;
}

.cookie-banner p a {
    color: var(--brand-accent-dark);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    padding: 8px 22px;
    font-size: 0.85rem;
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: var(--brand-white);
    border: none;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.faq-item {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    padding: 0;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-heading);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-item .faq-question:hover {
    color: var(--brand-accent-dark);
}

.faq-item .faq-question i {
    color: var(--brand-accent);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 0.93rem;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    padding: 0 24px 22px;
    max-height: 400px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 25, 18, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    color: var(--text-on-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.process-step {
    position: relative;
    padding: 32px 24px;
    background: var(--brand-cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--brand-border);
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
}

.process-step:hover {
    background: var(--brand-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.process-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-accent);
    color: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 20px;
}

.process-step h4 {
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.gallery-section .row {
    gap: 0;
}

.map-section {
    position: relative;
}

.map-section iframe {
    width: 100%;
    min-height: 420px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.cta-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-on-dark);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(242, 237, 228, 0.85);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.clients-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.client-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-body);
    opacity: 0.5;
    transition: var(--transition-base);
}

.client-logo:hover {
    opacity: 1;
    color: var(--brand-accent-dark);
}

.team-card {
    text-align: center;
    background: var(--brand-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--brand-border);
    padding: 32px 24px;
    transition: var(--transition-base);
    height: 100%;
}

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

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--brand-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin: 0 auto 20px;
}

.team-card h5 {
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
}

.team-card .team-role {
    font-size: 0.85rem;
    color: var(--brand-accent-dark);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 0;
}

.contact-info-card {
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    padding: 28px;
    height: 100%;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-accent-light);
    transform: translateY(-4px);
}

.contact-info-card .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.contact-info-card h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
    color: var(--text-body);
}

.divider {
    border: none;
    border-top: 1px solid var(--brand-border);
    margin: 60px 0;
    opacity: 1;
}

.about-intro {
    position: relative;
}

.about-intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 420px;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--brand-accent);
    color: var(--brand-white);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience-badge .label {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.blog-card {
    background: var(--brand-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--brand-border);
    height: 100%;
    transition: var(--transition-base);
}

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

.blog-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.83rem;
    color: var(--text-body);
    opacity: 0.75;
    margin-bottom: 12px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    font-size: 0.75rem;
    color: var(--brand-accent);
}

.blog-card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-heading);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-text {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.lightbox-caption {
    font-size: 0.9rem;
    color: rgba(242, 237, 228, 0.8);
}

p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 14px 0;
    }
    .navbar .container {
        padding: 0 20px;
    }
    .navbar-collapse {
        background: var(--brand-white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        padding: 20px;
        margin-top: 16px;
        border: 1px solid var(--brand-border);
    }
    .navbar .nav-link {
        color: var(--text-body) !important;
        padding: 10px 8px !important;
        border-radius: 8px;
    }
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        color: var(--brand-accent-dark) !important;
        background: var(--brand-cream);
    }
    .navbar-brand {
        color: var(--text-heading) !important;
    }
    .header-contact {
        margin: 16px 0 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .header-contact-item {
        color: var(--text-body);
    }
    .carousel-item {
        min-height: 400px;
    }
    .carousel-caption {
        padding: 30px 24px;
    }
    .carousel-caption h3 {
        font-size: 1.8rem;
    }
    .hero {
        min-height: 80vh;
        padding: 140px 0 80px;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .section-padding {
        padding: 70px 0;
    }
    .form-section {
        padding: 28px;
    }
    .footer {
        padding-top: 60px;
    }
}

@media (max-width: 575.98px) {
    .hero {
        min-height: 100vh;
        padding: 120px 0 60px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .carousel-item {
        min-height: 340px;
    }
    .carousel-caption h3 {
        font-size: 1.4rem;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .stat-number {
        font-size: 2.4rem;
    }
    .price-card {
        padding: 28px 20px;
    }
    .form-section {
        padding: 20px;
    }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px;
    }
    .back-to-top {
        bottom: 16px;
        right: 16px;
    }
    .about-experience-badge {
        padding: 14px 18px;
    }
    .about-experience-badge .number {
        font-size: 1.5rem;
    }
}
/* ===== Contrast fixes ===== */
.text-success,
a.text-success {
    color: #146c43 !important;
}
.btn-outline-success {
    color: #146c43 !important;
    border-color: #146c43 !important;
}
.btn-outline-success:hover {
    color: #fff !important;
    background-color: #146c43;
    border-color: #146c43;
}
/* Ensure headings on dark sections/footer render white */
footer h5,
.cta-section h2,
section[style*="#0d2a20"] h2 {
    color: #ffffff !important;
}
/* Prevent fixed header from overlapping the hero */
.contacts-hero {
    padding-top: 140px;
    padding-bottom: 70px;
}

/* ===== QA accessibility & contrast fixes ===== */
/* Give the about hero a solid dark base so text contrast is measurable */
.about-hero {
    background-color: #0d2a20;
    padding-top: 160px;
}
.about-hero h1,
.about-hero .lead {
    color: #ffffff !important;
}
@media (max-width: 575.98px) {
    .about-hero {
        padding-top: 120px;
    }
}
/* Lighten headings inside dark green CTA sections & footer for contrast */
footer[style*="background-color: #0d2a20"] h1,
footer[style*="background-color: #0d2a20"] h2,
footer[style*="background-color: #0d2a20"] h3,
footer[style*="background-color: #0d2a20"] h4,
footer[style*="background-color: #0d2a20"] h5,
footer[style*="background-color: #0d2a20"] h6,
section[style*="background-color: #0d2a20"] h1,
section[style*="background-color: #0d2a20"] h2,
section[style*="background-color: #0d2a20"] h3,
section[style*="background-color: #0d2a20"] h4,
section[style*="background-color: #0d2a20"] h5,
section[style*="background-color: #0d2a20"] h6 {
    color: #ffffff;
}

/* Force the static QA cookie banner to remain visible regardless of class defaults */
#qaCookieBanner,
#qaCookieBanner.cookie-banner {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    z-index: 99999 !important;
}

/* ===== Homepage QA fixes ===== */
/* Give the hero a solid dark base + top padding so fixed navbar never overlaps content */
.hero-section {
    padding-top: 96px;
    background-color: #0a1a12 !important;
}
.hero-section h1,
.hero-section .lead {
    color: #ffffff !important;
}
/* Dark base for the process section so white/light text has measurable contrast */
section[data-photo-slug="process-bg"] {
    background-color: #0d2a20 !important;
}
section[data-photo-slug="process-bg"] .section-label {
    color: #d8f3dc !important;
}
/* Portfolio captions: solid dark base under the text */
#portfolio .position-absolute {
    background-color: rgba(0, 0, 0, 0.72);
}
#portfolio .position-absolute h5,
#portfolio .position-absolute span {
    color: #ffffff !important;
}
/* Ensure visually-hidden carousel controls keep a contrasting background */
.carousel .visually-hidden {
    background-color: #212529;
    color: #ffffff;
}
/* Contact section heading / text contrast on dark green */
#contact .section-label {
    color: #d8f3dc !important;
}
@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 70px;
    }
}
