*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #faf8f5;
    color: #1a1a1a;
}



a {
    color: #b8860b;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: #d4af37;
}



.btn-accent {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.65rem 1.8rem;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(184, 134, 11, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-accent:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(184, 134, 11, 0.45);
    color: #ffffff;
}

.btn-accent:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}



header .navbar {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 30px rgba(26, 26, 26, 0.55);
}

.navbar-brand {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar-logo {
    height: 44px;
    width: 44px;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

.brand-text {
    display: inline-block;
}

.nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f5f5f5 !important;
    opacity: 0.85;
    padding: 0.5rem 0.9rem !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.15rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #b8860b, #d4af37);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.nav-link:hover {
    opacity: 1;
}

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

.navbar-toggler {
    border-color: rgba(184, 134, 11, 0.5);
}



.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f5;
    overflow: hidden;
    background: radial-gradient(circle at top left, #2a2a2a 0, #1a1a1a 45%, #0a0a0a 100%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(0.9) contrast(1.1);
    z-index: 1;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 3vw, 2.9rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto;
    color: #e8e8e8;
    line-height: 1.7;
}



.section-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.section-header p {
    color: #4a4a4a;
    max-width: 680px;
    margin: 0.3rem auto 0;
}

.section-header.text-center h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.section-header.text-center h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.15rem;
    transform: translateX(-50%);
    width: 82px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #b8860b, #d4af37);
}



section {
    position: relative;
}

.section-bg {
    background: #1a1a1a;
    color: #f5f5f5;
}

.section-bg .section-header h2 {
    color: #f5f5f5;
}

.section-bg .section-header p {
    color: #d0d0d0;
}



.benefit-item {
    padding: 1.1rem 0.2rem;
}

.benefit-icon {
    font-size: 2.3rem;
    margin-right: 0.8rem;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 18px;
    padding: 0.4rem;
}

.benefit-item h5 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.92rem;
    color: #4a4a4a;
}

.section-bg .benefit-item p {
    color: #d0d0d0;
}



.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 14px 35px rgba(26, 26, 26, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-bg .stat-card {
    background: rgba(10, 10, 10, 0.6);
    border-color: rgba(212, 175, 55, 0.35);
}

.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b8860b, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.section-bg .stat-text {
    color: #e8e8e8;
}



.article-content h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.article-content p {
    font-size: 0.96rem;
    color: #333333;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.section-bg .article-content p {
    color: #d0d0d0;
}



.contact-form .form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
}

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

.contact-form .form-control {
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 0.65rem 0.8rem;
    font-size: 0.95rem;
    background: #ffffff;
}

.section-bg .contact-form .form-control {
    background: rgba(10, 10, 10, 0.7);
    color: #f5f5f5;
    border-color: rgba(212, 175, 55, 0.5);
}

.contact-form .form-control:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}



.contact-info {
    font-size: 0.96rem;
    color: #333333;
}

.section-bg .contact-info {
    color: #e8e8e8;
}

.contact-email {
    color: #b8860b;
}

.contact-email:hover {
    color: #d4af37;
}



.thank-you-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: radial-gradient(circle at top, #2a2a2a 0, #1a1a1a 45%, #0a0a0a 100%);
}

.thank-you-card {
    background: rgba(26, 26, 26, 0.96);
    color: #f5f5f5;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 24px 60px rgba(10, 10, 10, 0.9);
    position: relative;
    overflow: hidden;
}

.thank-you-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    opacity: 0.09;
    background: radial-gradient(circle at top left, #d4af37 0, transparent 45%),
        radial-gradient(circle at bottom right, #b8860b 0, transparent 55%);
    pointer-events: none;
}

.thank-you-icon {
    position: relative;
    display: inline-flex;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #d4af37, #b8860b);
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.45);
}

.thank-you-icon .material-icons-outlined {
    font-size: 2.1rem;
    color: #0a0a0a;
}

.thank-you-title {
    position: relative;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thank-you-message {
    position: relative;
    font-size: 1.05rem;
    color: #d0d0d0;
    margin-bottom: 0.9rem;
}

.thank-you-submessage {
    position: relative;
    font-size: 0.96rem;
    color: #a8a8a8;
    max-width: 640px;
    margin: 0 auto;
}

.thank-you-actions {
    position: relative;
}



.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #f5f5f5;
    padding: 0.85rem 0;
    font-size: 0.92rem;
    z-index: 1200;
    box-shadow: 0 -10px 30px rgba(10, 10, 10, 0.85);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner p {
    margin-bottom: 0;
    color: #d0d0d0;
}

.cookie-banner a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #f4e5c2;
}



footer {
    font-size: 0.92rem;
}

footer h5,
footer h6 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 600;
}

footer p {
    color: #d0d0d0;
}

footer a.text-light {
    opacity: 0.85;
}

footer a.text-light:hover {
    opacity: 1;
}

.footer-logo {
    height: 38px;
    width: 38px;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}



img.img-fluid {
    border-radius: 18px;
}



@media (max-width: 991.98px) {
    body {
        padding-top: 64px;
    }

    .hero-overlay {
        padding: 4.2rem 0 3rem;
    }

    .thank-you-card {
        padding: 2.4rem 1.7rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .thank-you-card {
        padding: 2rem 1.4rem;
    }

    .thank-you-section {
        padding: 5rem 0 3rem;
    }
}

.content-section {
    color: #1a1a1a;
}

.content-section h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.content-section p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1rem;
}
