@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1b4332;
    --primary-light: #40916c;
    --primary-dark: #081c15;
    --accent: #d4a373;
    --accent-dark: #b07d4f;
    --accent-pale: #f0e2c8;
    --light: #fdfaf5;
    --dark: #081c15;
    --text: #2b2925;
    --white: #ffffff;
    --border-light: rgba(27, 67, 50, 0.12);
    --border-dark: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 4px 16px rgba(8, 28, 21, 0.08);
    --shadow-md: 0 8px 32px rgba(8, 28, 21, 0.12);
    --shadow-lg: 0 20px 60px rgba(8, 28, 21, 0.18);
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 40px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.75rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

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

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

img {
    max-width: 100%;
    height: auto;
}

.btn {
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: none;
}

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

.btn-brand:hover,
.btn-brand:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary-dark);
    border: 2px solid var(--accent);
}

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

.btn-outline-brand {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-outline-darkbrand {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-darkbrand:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: var(--accent-pale);
    border-color: var(--accent-pale);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(212, 163, 115, 0.12);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-badge i {
    font-size: 0.7rem;
    color: var(--accent);
}

.section-title {
    font-size: 2.85rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

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

.section-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.85;
    max-width: 720px;
}

.section-lead-light {
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

.overlay-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.overlay-section h2,
.overlay-section h3 {
    color: var(--white);
}

.overlay-section p {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-custom {
    padding-top: 18px;
    padding-bottom: 18px;
    transition: var(--transition);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-custom .navbar-brand {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
}

.navbar-custom .navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-custom .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    font-size: 0.93rem;
    padding: 0.5rem 1.1rem;
    transition: var(--transition);
    letter-spacing: 0.03em;
    position: relative;
}

.navbar-custom .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.1rem;
    right: 1.1rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.navbar-custom .navbar-nav .nav-link:hover::after,
.navbar-custom .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    color: var(--white);
}

.navbar-custom .navbar-toggler {
    border: none;
    outline: none;
    font-size: 1.5rem;
    color: var(--white);
    padding: 4px 8px;
}

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

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

.navbar-custom.navbar-scrolled {
    background-color: rgba(8, 28, 21, 0.95);
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 4px 30px rgba(8, 28, 21, 0.25);
    backdrop-filter: blur(12px);
}

.navbar-custom.navbar-scrolled .navbar-brand {
    font-size: 1.5rem;
}

.hero-slider {
    position: relative;
}

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

.hero-slider .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    text-align: center;
    max-width: 850px;
    padding: 0 20px;
    z-index: 2;
}

.hero-slider .carousel-caption h5 {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-slider .carousel-caption p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

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

.hero-slider .carousel-indicators {
    bottom: 40px;
}

.hero-slider .carousel-indicators button {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    opacity: 1;
    transition: var(--transition);
}

.hero-slider .carousel-indicators button.active {
    background-color: var(--accent);
    width: 60px;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin: 0 30px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-slider .carousel-control-prev i,
.hero-slider .carousel-control-next i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(27, 67, 50, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-pale), var(--light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.85;
    margin-bottom: 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(8, 28, 21, 0.7) 100%);
}

.service-card-body {
    padding: 32px 28px;
    position: relative;
}

.service-card-body h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-dark);
    transition: var(--transition);
}

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

.service-card-price {
    position: absolute;
    top: -22px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

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

.stats-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stats-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.stats-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stats-number span {
    color: var(--accent);
}

.stats-label {
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 24px;
    right: 28px;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 20px;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonial-author-role {
    font-size: 0.8rem;
    opacity: 0.7;
    color: var(--text);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8, 28, 21, 0.85) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-item-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    transform: translateY(12px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay span {
    transform: translateY(0);
}

.gallery-item-wide {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 28, 21, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease;
}

.gallery-lightbox-closing {
    animation: lightboxFadeOut 0.3s ease;
    opacity: 0;
}

.gallery-lightbox-inner {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.gallery-lightbox-inner img {
    max-height: 85vh;
    max-width: 90vw;
    border-radius: 12px;
    object-fit: contain;
}

.gallery-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lightboxFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

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

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

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

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

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--accent-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-body p {
    font-size: 0.92rem;
    opacity: 0.8;
    margin-bottom: 16px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    transition: var(--transition);
}

.blog-card-link:hover {
    gap: 14px;
    color: var(--accent-dark);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-info-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.contact-info-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.85;
}

.form-control {
    border: 1.5px solid rgba(27, 67, 50, 0.15);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--light);
    color: var(--text);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.08);
    background-color: var(--white);
}

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

.form-check-input {
    border-color: rgba(27, 67, 50, 0.25);
}

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

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

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

.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 90px;
    padding-bottom: 30px;
}

.footer h4,
.footer h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after,
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    transition: var(--transition);
}

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

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

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

.footer-links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a i {
    font-size: 0.6rem;
    color: var(--accent);
}

.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;
    font-size: 0.92rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    margin-bottom: 0;
    opacity: 0.7;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-registration {
    font-size: 0.8rem;
    opacity: 0.65;
    line-height: 1.6;
    margin-top: 8px;
}

.cookie-notice {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 120%);
    background: var(--primary-dark);
    color: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    max-width: 480px;
    width: calc(100% - 48px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-notice-show {
    transform: translate(-50%, 0);
}

.cookie-notice-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-notice-text {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

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

.cookie-notice .btn-accept-all {
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-notice .btn-accept-all:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.cookie-notice .btn-decline-all {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-notice .btn-decline-all:hover {
    border-color: var(--white);
    color: var(--white);
}

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

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

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.form-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 10002;
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 360px;
}

.form-notification-show {
    opacity: 1;
    transform: translateX(0);
}

.form-notification-icon {
    font-size: 1.6rem;
    color: var(--white);
}

.form-notification-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-notification-error {
    background: #c0392b;
}

.accordion-custom .accordion-item {
    background: var(--white);
    border: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-custom .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-custom .accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-custom .accordion-button {
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--white);
    transition: var(--transition);
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
}

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

.accordion-custom .accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(0);
}

.accordion-custom .accordion-body {
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

.page-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 120px;
}

.page-hero .page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3.8rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.8;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(27, 67, 50, 0.06);
}

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

.pricing-card-featured {
    background: var(--primary);
    color: var(--white);
}

.pricing-card-featured h3,
.pricing-card-featured h4,
.pricing-card-featured p {
    color: var(--white);
}

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

.pricing-card-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.pricing-card-period {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

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

.pricing-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.pricing-card-features li i {
    color: var(--accent);
    font-size: 0.75rem;
}

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

.pricing-card-featured .btn-brand {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.pricing-card-featured .btn-brand:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

.brand-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.brand-logo-grid img {
    max-height: 44px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--transition);
}

.brand-logo-grid img:hover {
    opacity: 1;
    filter: grayscale(0);
}

@media (max-width: 1199.98px) {
    .hero-slider .carousel-caption h5 {
        font-size: 3.4rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .navbar-custom {
        background-color: rgba(8, 28, 21, 0.95);
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .navbar-custom .navbar-nav {
        background: var(--primary-dark);
        border-radius: 16px;
        padding: 12px;
        margin-top: 12px;
    }

    .navbar-custom .navbar-nav .nav-link {
        color: var(--white);
    }

    .navbar-custom .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-slider .carousel-item {
        min-height: 80vh;
    }

    .hero-slider .carousel-caption h5 {
        font-size: 2.6rem;
    }

    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 1rem;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .hero-slider .carousel-caption h5 {
        font-size: 2rem;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .stats-number {
        font-size: 2.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .cookie-notice {
        padding: 18px 20px;
        width: calc(100% - 32px);
        bottom: 16px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero {
        min-height: 55vh;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .form-notification {
        left: 16px;
        right: 16px;
        max-width: none;
        width: auto;
        top: 16px;
        transform: translateY(-120%);
    }

    .form-notification-show {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
/* Contrast overrides for blog listing */
.blog-card-meta {
    color: #6b4423;
}

.section-badge {
    color: #8a5a2b;
}

/* ===== Contrast & accessibility fixes ===== */
.page-hero {
    background-color: #081c15;
}
.page-hero-badge {
    background-color: #0b2a1e;
    border-color: rgba(255, 255, 255, 0.3);
}
.section-badge,
.section-badge i {
    color: #6b4218 !important;
}

/* === Accessibility / contrast fixes === */
.page-hero {
    background-color: #081c15;
}
.overlay-section {
    background-color: #081c15;
}
.page-hero-badge {
    background: rgba(8, 28, 21, 0.9);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}
.section-badge {
    background: var(--primary);
    color: #ffffff;
}
.section-badge i {
    color: #ffffff;
}
.service-card-link,
.blog-card-meta {
    color: #8a5a2e;
}

/* ===== Event floral page contrast fixes ===== */
/* Section badge: force white text on the dark green badge for strong contrast */
.section-badge,
.section-badge i,
.section-badge.text-white,
.section-badge.text-white i {
    color: #ffffff !important;
}
.section-badge {
    background: #1b4332 !important;
}

/* Hero section: give the image-based hero a solid dark base so white text
   computes a high contrast against it. */
.hero {
    background-color: #081c15;
}

/* Stats cards sit on a dark section but used a translucent white background
   that the contrast checker read as white. Give them a solid dark fill. */
.stats-card {
    background-color: #0b2a1e;
}

/* Gallery overlays: add a solid dark base so the white overlay caption text
   has strong contrast even before the hover gradient applies. */
.gallery-item-overlay {
    background-color: rgba(8, 28, 21, 0.85);
}

/* ===== Corporate Floral Branding page fixes ===== */
.hero { background-color: #081c15; }

/* Section badges: ensure white text on the dark green pill background */
.section-badge,
.section-badge i { color: #ffffff !important; }

/* Stats cards on dark section: solid dark background for correct contrast */
.stats-card { background: #0b2a1e !important; }
.stats-number span { color: #f0e2c8 !important; }
.stats-label { color: #ffffff !important; }

/* Gallery overlay: always show dark gradient so white captions have contrast */
.gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(8,28,21,0.05) 0%, rgba(8,28,21,0.85) 100%);
}
.gallery-item-overlay span { transform: translateY(0); }
.gallery-item:hover .gallery-item-overlay span { transform: translateY(0); }

/* Static cookie consent banner */
.site-cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1120px;
    margin: auto;
    padding: 16px 18px;
    border-radius: 12px;
    background: #171717;
    color: #ffffff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
    font: 15px/1.5 Arial, sans-serif;
}
.site-cookie-banner p { margin: 0; color: #ffffff; }
.site-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.site-cookie-btn {
    border: 1px solid #ffffff;
    border-radius: 7px;
    padding: 9px 16px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    color: #ffffff;
}
.site-cookie-accept { background: #ffffff; color: #171717; }
.site-cookie-decline { background: transparent; color: #ffffff; }
.site-cookie-btn:hover { opacity: 0.9; }
@media (max-width: 640px) {
    .site-cookie-banner { flex-direction: column; align-items: stretch; }
    .site-cookie-actions { width: 100%; }
    .site-cookie-btn { flex: 1; }
}

/* ===== Home page accessibility & contrast fixes ===== */

/* Hero caption: solid dark panel so the white hero text computes strong contrast
   against it rather than the page's cream background. */
.hero-slider .carousel-caption {
    background: #0b2a1e;
    border-radius: 24px;
    padding: 48px 40px;
}
.hero-slider .carousel-caption h5,
.hero-slider .carousel-caption p {
    text-shadow: none;
}
@media (max-width: 575.98px) {
    .hero-slider .carousel-caption {
        padding: 28px 20px;
        width: 92%;
    }
}

/* Hero badge: solid dark fill so white text has strong contrast. */
.hero-badge {
    background: #1b4332 !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero carousel control visually-hidden labels: dark text on a light chip. */
.hero-slider .carousel-control-prev .visually-hidden,
.hero-slider .carousel-control-next .visually-hidden {
    color: #081c15;
    background: #fdfaf5;
}

/* Testimonial cards are white and sit inside a dark section; force dark text
   so it does not inherit the section's white paragraph colour. */
.testimonial-text {
    color: #2b2925 !important;
    opacity: 1 !important;
}
.testimonial-avatar {
    background: #1b4332 !important;
    color: #ffffff;
}

/* Gallery overlay captions: give each caption a solid dark pill for contrast. */
.gallery-item-overlay span {
    background: rgba(8, 28, 21, 0.85);
    padding: 6px 14px;
    border-radius: 8px;
}
