:root {
    --color-main: #fdfaf5;
    --color-accent-1: #d4a373;
    --color-accent-2: #a68dad;
    --color-accent-3: #6b7280;
    --color-accent-4: #475569;
    --color-white: #ffffff;
    --color-light-gray: #f5f3f0;
    --color-dark-gray: #3a3a3a;
    --spacing-unit: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.82;
    color: var(--color-dark-gray);
    background-color: var(--color-main);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    letter-spacing: -0.4px;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: -0.8px;
}

h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-accent-1);
}

h4, h5, h6 {
    font-size: 18px;
}

header.header-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: rgba(253, 250, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 163, 115, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent-1) !important;
    letter-spacing: -0.5px;
}

.brand-logo {
    color: var(--color-accent-1);
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent-4) !important;
    margin-left: 20px;
    transition: color 0.3s ease;
}

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

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 85, 105, 0.4) 0%, rgba(212, 163, 115, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 40px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.section-white {
    background-color: var(--color-white);
    padding: 100px 40px;
}

.section-pearl {
    background: linear-gradient(135deg, #fdfaf5 0%, #f0e8e0 100%);
    padding: 100px 40px;
}

.container-custom {
    max-width: 1240px;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 50px;
    color: var(--color-accent-4);
    text-align: left;
}

.text-body {
    font-size: 16px;
    line-height: 1.82;
    color: var(--color-dark-gray);
    margin-bottom: 24px;
}

.text-body strong {
    font-weight: 600;
    color: var(--color-accent-1);
}

.section-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 400px;
    margin-bottom: 40px;
}

.section-image-full {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 350px;
    margin: 40px 0;
}

.card-section {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(212, 163, 115, 0.15);
}

.card-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent-1);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent-1);
    margin-bottom: 12px;
}

.card-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-accent-3);
}

.table-data {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--color-light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.table-data th {
    background-color: var(--color-accent-1);
    color: var(--color-white);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.table-data td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(212, 163, 115, 0.2);
    font-size: 14px;
}

.table-data tr:last-child td {
    border-bottom: none;
}

.card-faq {
    background-color: transparent;
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.card-header {
    background-color: transparent;
    border: none;
    padding: 0;
}

.btn-accordion {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-accent-4);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-accordion:hover {
    background-color: rgba(212, 163, 115, 0.05);
    color: var(--color-accent-1);
}

.btn-accordion:focus {
    outline: none;
}

.accordion-icon {
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.35s ease;
}

.btn-accordion[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.collapse.show {
    max-height: 500px;
}

.card-body {
    padding: 20px 24px;
    background-color: rgba(253, 250, 245, 0.5);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-accent-3);
}

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-accent-1);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: var(--color-accent-2);
    text-decoration: none;
    color: var(--color-white);
}

.form-contact {
    background-color: var(--color-light-gray);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(212, 163, 115, 0.15);
}

.form-disclaimer {
    background-color: rgba(212, 163, 115, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-accent-3);
    margin-bottom: 20px;
    border-left: 4px solid var(--color-accent-1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-accent-4);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(212, 163, 115, 0.3);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: var(--color-white);
    color: var(--color-dark-gray);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent-1);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--color-accent-1);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--color-accent-2);
}

.form-message {
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
}

.form-message.success {
    background-color: rgba(52, 168, 83, 0.1);
    color: #22863a;
    border-left: 4px solid #34a853;
}

.form-message.error {
    background-color: rgba(219, 40, 40, 0.1);
    color: #cb2431;
    border-left: 4px solid #db2828;
}

.footer {
    background-color: var(--color-accent-4);
    color: var(--color-white);
    padding: 60px 40px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    line-height: 1.8;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: var(--color-accent-1);
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 12px;
}

.policy-link {
    color: var(--color-accent-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 163, 115, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-accent-4);
    color: var(--color-white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.35s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cookie-accept {
    background-color: var(--color-accent-1);
    color: var(--color-white);
}

.btn-cookie-accept:hover {
    background-color: #c9956b;
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-cookie-more {
    background-color: transparent;
    color: var(--color-accent-1);
    border: 1px solid var(--color-accent-1);
}

.btn-cookie-more:hover {
    background-color: rgba(212, 163, 115, 0.1);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--color-white);
    border-radius: 12px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--color-accent-3);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-accent-1);
}

#policyBody {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-dark-gray);
}

#policyBody h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-accent-4);
}

#policyBody h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
}

#policyBody p {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    h2 {
        font-size: 28px;
    }

    .section-white,
    .section-pearl {
        padding: 60px 20px;
    }

    .section-image,
    .section-image-full {
        height: 250px;
    }

    .card-image {
        height: 180px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .btn-cookie {
        flex: 1;
        min-width: 100px;
    }

    .modal-content {
        padding: 20px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    .section-white,
    .section-pearl {
        padding: 40px 16px;
    }

    .container-custom {
        padding: 0 16px;
    }

    .card-section {
        padding: 16px;
    }

    .form-contact {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
