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

:root {
    --primary: #0b1a2e;
    --primary-light: #132743;
    --secondary: #1e3a5f;
    --accent: #c8a96a;
    --accent-light: #ddc08a;
    --accent-dark: #a8894f;
    --light-bg: #faf7f2;
    --light-card: #ffffff;
    --text-dark: #16213a;
    --text-body: #3a4a60;
    --text-on-dark: #e8e4de;
    --text-on-light: #2c3850;
    --border-light: #e8e2da;
    --border-dark: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

h6 {
    font-size: 0.95rem;
    font-weight: 600;
}

p {
    font-size: 1.05rem;
    color: inherit;
    line-height: 1.8;
}

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

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

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

.container {
    max-width: 1200px;
}

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

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

.bg-dark-section h1,
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4,
.bg-dark-section h5,
.bg-dark-section h6 {
    color: #ffffff;
}

.bg-dark-section p {
    color: var(--text-on-dark);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 20px;
    border: 1px solid rgba(200, 168, 106, 0.4);
    border-radius: 40px;
    margin-bottom: 18px;
    background: rgba(200, 168, 106, 0.08);
}

.bg-dark-section .section-label {
    border-color: rgba(200, 168, 106, 0.5);
    background: rgba(200, 168, 106, 0.12);
    color: var(--accent-light);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.bg-dark-section .section-title {
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c7a90;
    max-width: 700px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.btn {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(200, 168, 106, 0.35);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 168, 106, 0.45);
}

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

.btn-outline-gold:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 168, 106, 0.3);
}

.btn-white {
    background: #ffffff;
    color: var(--text-dark);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: #ffffff;
    color: var(--text-dark);
    border-color: #ffffff;
}

.navbar {
    background: rgba(11, 26, 46, 0.92);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 10px 18px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-light) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.navbar-toggler {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1.5rem;
}

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

.hero-slider {
    position: relative;
    min-height: 90vh;
    background: var(--primary);
}

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


.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 750px;
    padding: 60px 0;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.8rem;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 6px 20px;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4) !important;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--accent) !important;
    width: 30px;
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    margin: 0 20px;
    opacity: 0.6;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(200, 168, 106, 0.4);
}

.card {
    background: var(--light-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 168, 106, 0.3);
}

.card-img-top {
    height: 240px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.bg-dark-section .card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.bg-dark-section .card-title {
    color: #ffffff;
}

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

.feature-box {
    padding: 40px 30px;
    border-radius: var(--radius-md);
    background: var(--light-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 168, 106, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 168, 106, 0.15) 0%, rgba(200, 168, 106, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent);
}

.bg-dark-section .feature-box {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.bg-dark-section .feature-box h5 {
    color: #ffffff;
}

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

.bg-dark-section .feature-icon {
    background: rgba(200, 168, 106, 0.2);
    color: var(--accent-light);
}

.bg-cover-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
}

.bg-cover-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 26, 46, 0.75);
}

.bg-cover-section .container {
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-light);
    display: block;
    line-height: 1.1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    margin-bottom: 24px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h5 {
    color: #ffffff;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.testimonial-item {
    padding: 40px 30px;
    background: var(--light-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.testimonial-role {
    color: #6c7a90;
    font-size: 0.85rem;
}

.pricing-card {
    background: var(--light-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.pricing-card.featured {
    border-color: var(--accent);
    position: relative;
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 20px;
}

.pricing-header {
    background: var(--primary);
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    color: #ffffff;
    margin-bottom: 4px;
}

.pricing-header .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
}

.pricing-body {
    padding: 30px;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-body ul li {
    padding: 8px 0;
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.pricing-body ul li i {
    color: var(--accent);
    margin-top: 4px;
}

.faq-accordion .accordion-item {
    background: var(--light-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--light-card);
    color: var(--text-dark);
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1rem;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(200, 168, 106, 0.08);
    color: var(--accent-dark);
}

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

.faq-accordion .accordion-body {
    padding: 0 25px 20px;
    color: var(--text-body);
    font-size: 0.95rem;
}

.contact-form .form-control {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 168, 106, 0.15);
    outline: none;
}

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

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

.bg-dark-section .contact-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.bg-dark-section .contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.bg-dark-section .contact-form .form-label {
    color: #ffffff;
}

.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 20px;
}

.footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

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

.footer i {
    color: var(--accent);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-contact-item i {
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gdpr-cookie-backdrop {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(11, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    padding: 24px 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(200, 168, 106, 0.2);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gdpr-cookie-backdrop.show {
    transform: translateY(0);
}

.gdpr-cookie-backdrop .gdpr-cookie-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.gdpr-cookie-backdrop .gdpr-cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.gdpr-cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gdpr-cookie-accept,
.gdpr-cookie-decline {
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.gdpr-cookie-accept {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
}

.gdpr-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 168, 106, 0.4);
}

.gdpr-cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gdpr-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.form-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 18px 28px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transform: translateX(400px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid var(--accent);
    min-width: 300px;
}

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

.form-notification.success {
    border-left-color: #4ade80;
}

.form-notification.success i {
    color: #4ade80;
}

.form-notification.error {
    border-left-color: #f87171;
}

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

.form-notification i {
    font-size: 1.4rem;
    color: var(--accent);
}

.to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(200, 168, 106, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.to-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(200, 168, 106, 0.5);
}

.partner-logo {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

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

.bg-dark-section .map-wrapper {
    border-color: rgba(255, 255, 255, 0.1);
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-card);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

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

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--accent);
}

.team-member h5 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.team-member .team-role {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(200, 168, 106, 0.2));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--light-bg);
}

.timeline-item h5 {
    font-family: var(--font-heading);
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.timeline-item .timeline-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--text-body);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: var(--primary);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }

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

    .stat-number {
        font-size: 2rem;
    }

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

    .bg-cover-section {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .form-notification {
        left: 20px;
        right: 20px;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .hero-slider .carousel-item {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    .testimonial-item {
        padding: 25px 15px;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .feature-box {
        padding: 25px 20px;
    }
}
/* --- Contrast & layout overrides for blog page --- */

/* Solid dark base behind hero / CTA background images for readable white text */
.blog-hero,
.blog-cta {
    background-color: #0b1a2e !important;
}

/* Ensure footer column headings are light on the dark footer */
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: #ffffff !important;
}

/* Card title links on light cards need darker link colour for contrast */
.card-title a.text-decoration-none {
    color: #1b2a41 !important;
}
.card-title a.text-decoration-none:hover {
    color: #c8a96a !important;
}

/* ===== Contrast & display fixes (contacts page) ===== */
/* Ensure hero and CTA sections have a dark background so white text has sufficient contrast */
.contacts-hero,
section[data-photo-slug="contacts-cta"] {
    background-color: #1a1a2e !important;
}

/* Footer headings must be light on the dark footer */
footer h6,
footer .text-uppercase.fw-bold,
footer .text-uppercase {
    color: #ffffff !important;
}

/* Darken outline-primary button text for accessible contrast on light backgrounds */
.btn-outline-primary {
    color: #084298 !important;
    border-color: #084298 !important;
}
.btn-outline-primary:hover {
    color: #ffffff !important;
    background-color: #084298 !important;
    border-color: #084298 !important;
}

/* ===== QA FIX OVERRIDES ===== */

/* Ensure dark text-on-image hero/stats/CTA sections always have an opaque dark background */
.about-hero,
.about-hero,
[data-photo-slug="about-hero"],
[data-photo-slug="about-stats"],
[data-photo-slug="about-cta"] {
    background-color: #1a1a2e;
}

/* Footer headings: white text on dark footer background for sufficient contrast */
footer h6.text-uppercase,
footer h6 {
    color: #ffffff !important;
}

/* Carousel control screen-reader-only labels: ensure they meet contrast */
.carousel-control-prev .visually-hidden,
.carousel-control-next .visually-hidden {
    color: #000000 !important;
    background: #ffffff !important;
}

/* Static cookie consent banner */
.static-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #171717;
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
    font-size: 0.95rem;
    line-height: 1.5;
}
.static-cookie-banner p {
    margin: 0;
    color: #ffffff;
}
.static-cookie-banner .scb-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.static-cookie-banner button {
    border: 1px solid #ffffff;
    border-radius: 6px;
    padding: 8px 18px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
}
.static-cookie-banner button.scb-accept {
    background: #ffffff;
    color: #171717;
}
.static-cookie-banner a {
    color: #ffd98a;
    text-decoration: underline;
}
@media (max-width: 640px) {
    .static-cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .static-cookie-banner .scb-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Hide JS-injected duplicate cookie banners so only the static banner is shown */
#generator-cookie-consent,
.gdpr-cookie-backdrop {
    display: none !important;
}

/* ===== Static cookie banner visibility ===== */
#static-cookie-banner.gdpr-cookie-backdrop{
    position:fixed!important;
    left:0;right:0;bottom:0;top:auto!important;
    z-index:2147483647;
    background:#171717;
    color:#fff;
    padding:18px 0;
    box-shadow:0 -8px 25px rgba(0,0,0,.35);
    display:block!important;
    opacity:1!important;
    visibility:visible!important;
    transform:none!important;
}
#static-cookie-banner .gdpr-cookie-text{
    color:#fff;
    line-height:1.6;
}
#static-cookie-banner .gdpr-cookie-text a{
    color:#ffc107;
    text-decoration:underline;
}
#static-cookie-banner .gdpr-cookie-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
#static-cookie-banner .gdpr-cookie-accept,
#static-cookie-banner .gdpr-cookie-decline{
    border:1px solid #fff;
    border-radius:7px;
    padding:9px 18px;
    font-weight:700;
    cursor:pointer;
    background:transparent;
    color:#fff;
}
#static-cookie-banner .gdpr-cookie-accept{
    background:#fff;
    color:#171717;
}
@media(max-width:640px){
    #static-cookie-banner .gdpr-cookie-buttons{
        width:100%;
        flex-direction:column;
    }
}
