/* Variables */
:root {
    --gold: #C7A472;
    --gold-light: #D4B87A;
    --gold-dark: #C09E6E;
    --black: #0A0A0A;
    --black-pure: #000000;
    --white: #FFFFFF;
    --text-gray: #333333;
    --text-light: #666666;
    --font-titles: 'Merriweather', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-gray);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.7;
}

/* Navbar */
#mainNav {
    background-color: var(--gold) !important;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: none;
    transition: all 0.3s ease;
    min-height: auto;
}

#mainNav.scrolled { padding: 4px 0; }

#mainNav .container { max-width: 1200px; }

#mainNav .navbar-brand {
    padding: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-text-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-line {
    font-family: var(--font-titles);
    font-size: 12px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-line3 {
    font-family: var(--font-titles);
    font-size: 8px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    object-fit: contain;
}

#mainNav.scrolled .logo-img {
    height: 40px;
}

#mainNav .navbar-nav { gap: 35px; margin: 0 auto; }

#mainNav .nav-link {
    color: var(--black) !important;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 0 !important;
    position: relative;
    text-transform: uppercase;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background-color: var(--black);
    transition: width 0.3s ease;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: 100%; }

.btn-llamar {
    background-color: var(--black);
    color: var(--gold) !important;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    border-radius: 25px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-llamar:hover {
    background-color: var(--black-pure);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.navbar-toggler { border: none; padding: 0; }

/* Hero */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    background-image: url(../img/1.webp);
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-titles);
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 14px 35px;
    border-radius: 30px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.hero-btn:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(199, 164, 114, 0.3);
}

.hero-curve {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    z-index: 2;
}

/* About */
.about-section {
    padding: 100px 0 120px;
    background-color: var(--white);
    position: relative;
    z-index: 3;
}

.about-section .container { max-width: 1200px; }

.about-text-col { padding-right: 60px; padding-top: 20px; }

.gold-line {
    width: 70px;
    height: 3px;
    background-color: var(--gold);
    margin-bottom: 25px;
}

.about-title {
    font-family: var(--font-titles);
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 400;
}

.about-image-col { padding-left: 40px; }

.image-wrapper { position: relative; display: inline-block; }

.about-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.gold-border-frame {
    position: absolute;
    top: 25px; left: 25px;
    right: -25px; bottom: -25px;
    border: 4px solid var(--gold);
    z-index: 1;
    pointer-events: none;
}

/* Areas */
.areas-section {
    background: linear-gradient(to bottom, #0C0B0B 0%, #000000 60%, #1a1510 80%, #3d3020 95%, var(--gold-dark) 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.areas-section .container { max-width: 1200px; position: relative; z-index: 1; }

.white-line {
    width: 70px;
    height: 3px;
    background-color: var(--white);
    margin-bottom: 25px;
}

.areas-title {
    font-family: var(--font-titles);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.row-first { margin-bottom: 30px; }

.area-card {
    background-color: var(--gold);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    min-height: 240px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: inset 0 0 0 1px rgba(139, 105, 20, 0.4), inset 0 0 0 2px rgba(160, 128, 64, 0.2);
    position: relative;
    border: none;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(200, 169, 110, 0.3);
}

.area-card::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px;
    right: 8px; bottom: 8px;
    border: 1px solid rgba(75, 57, 9, 0.35);
    border-radius: 14px;
    pointer-events: none;
}

.area-icon {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.area-card:hover .area-icon { transform: scale(1.1); }

.area-icon i { display: block; }

.area-card h3 {
    font-family: var(--font-titles);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.area-card p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--black);
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
}

/* Recursos Legales */
.recursos-section {
    padding: 100px 0 120px;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.recursos-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c7a472' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.recursos-section .container { max-width: 1200px; position: relative; z-index: 1; }

.gold-line-center {
    width: 70px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto 25px;
}

.recursos-title {
    font-family: var(--font-titles);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.recursos-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.recurso-categoria {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(199, 164, 114, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.recurso-categoria:hover {
    border-color: rgba(199, 164, 114, 0.4);
    box-shadow: 0 10px 40px rgba(199, 164, 114, 0.1);
}

.recurso-cat-header {
    background-color: rgba(199, 164, 114, 0.1);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(199, 164, 114, 0.15);
}

.recurso-cat-header i {
    font-size: 24px;
    color: var(--gold);
}

.recurso-cat-header h3 {
    font-family: var(--font-titles);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    line-height: 1.2;
}

.recurso-lista { padding: 10px; }

.recurso-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

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

.recurso-item:hover {
    background-color: rgba(199, 164, 114, 0.08);
    border-color: rgba(199, 164, 114, 0.2);
    transform: translateX(5px);
}

.recurso-item:hover .recurso-icon {
    background-color: var(--gold);
    color: var(--black);
}

.recurso-item:hover .bi-arrow-up-right {
    color: var(--gold);
    transform: translate(2px, -2px);
}

.recurso-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background-color: rgba(199, 164, 114, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.recurso-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recurso-nombre {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.recurso-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.4;
}

.bi-arrow-up-right {
    color: rgba(199, 164, 114, 0.4);
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Contact */
.contact-section {
    padding: 100px 0 80px;
    background-color: var(--white);
}

.contact-section .container { max-width: 1200px; }

.contact-header { align-items: center; margin-bottom: 60px; }

.contact-title-col { text-align: right; padding-right: 30px; }

.contact-main-title {
    font-family: var(--font-titles);
    font-size: 36px;
    font-weight: 700;
    color: #8B6B3E;
    line-height: 1.25;
    margin-bottom: 10px;
}

.contact-sub {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

.divider-col { display: flex; justify-content: center; align-items: center; }

.vertical-divider { width: 2px; height: 80px; background-color: var(--black); }

.contact-info-col { padding-left: 20px; }

.info-block { margin-bottom: 15px; }

.info-block:last-child { margin-bottom: 0; }

.info-label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value-link {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value-link:hover {
    color: var(--gold-dark);
}

.whatsapp-col { display: flex; align-items: center; justify-content: center; }

.whatsapp-btn {
    font-size: 48px;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.1);
}

.whatsapp-btn:hover {
    color: #25D366;
    transform: scale(1.15);
    background-color: rgba(37, 211, 102, 0.15);
}

.form-wrapper {
    background-color: var(--black-pure);
    border-radius: 25px;
    padding: 50px 60px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-input {
    background-color: var(--gold);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font-body);
}

.form-input:focus {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 0 0 4px rgba(199, 164, 114, 0.2);
}

.form-input.textarea { resize: none; min-height: 150px; }

.btn-submit {
    background-color: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 50px;
    border-radius: 25px;
    border: 2px solid var(--gold);
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
}

.btn-submit:hover:not(:disabled) {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-spinner .spin {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form alerts */
.alert {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
}

.alert strong {
    display: block;
    font-size: 17px;
    margin-bottom: 5px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background-color: var(--black-pure);
    padding: 30px 0;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.footer .container { max-width: 1200px; }

.footer-privacy { margin-bottom: 8px; }

.footer-privacy a {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy a:hover { color: var(--white); text-decoration: underline; }

.footer-copy {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section { min-height: 500px; height: 70vh; }
    .hero-title { font-size: 42px; }
    .hero-subtitle { font-size: 16px; }
    .hero-curve { height: 80px; }
    .about-section { padding: 60px 0 80px; }
    .about-text-col { padding-right: 15px; margin-bottom: 50px; }
    .about-title { font-size: 32px; }
    .about-image-col { padding-left: 15px; }
    .gold-border-frame { top: 15px; left: 15px; right: -15px; bottom: -15px; border-width: 3px; }
    .areas-section { padding: 60px 0 80px; }
    .areas-title { font-size: 32px; margin-bottom: 40px; }
    .recursos-section { padding: 60px 0 80px; }
    .recursos-title { font-size: 32px; }
    .recurso-cat-header h3 { font-size: 20px; }
    .contact-section { padding: 60px 0 50px; }
    .contact-title-col { text-align: center; padding-right: 15px; margin-bottom: 25px; }
    .contact-main-title { font-size: 28px; }
    .divider-col { display: none; }
    .contact-info-col { text-align: center; padding-left: 15px; margin-bottom: 25px; }
    .whatsapp-col { margin-bottom: 30px; }
    .form-wrapper { padding: 35px 30px; border-radius: 20px; }
    #mainNav .navbar-nav { gap: 10px; padding: 15px 0; background-color: rgba(199, 164, 114, 0.95); margin-top: 10px; border-radius: 15px; padding: 20px; }
    .btn-llamar { width: 100%; margin-top: 10px; text-align: center; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 14px; }
    .about-title, .areas-title, .recursos-title { font-size: 28px; }
    .contact-main-title { font-size: 24px; }
    .area-card { padding: 30px 20px; min-height: auto; }
    .area-card h3 { font-size: 24px; }
    .hero-curve { height: 60px; }
    .form-wrapper { padding: 25px 20px; }
    .btn-submit { width: 100%; min-width: auto; }
    .recurso-item { padding: 14px 16px; }
    .recurso-nombre { font-size: 14px; }
    .recurso-desc { font-size: 12px; }
    .info-value-link { font-size: 15px; }
}

/* Utilities */
html { scroll-behavior: smooth; }

::selection { background-color: var(--gold); color: var(--black); }

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

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

::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* Focus visible for accessibility */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--black);
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Privacy Section */
.privacy-section-page {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--white) 0%, #FAFAFA 100%);
    position: relative;
}

.privacy-section-page .container {
    max-width: 900px;
}

.privacy-header-inner {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-main-title {
    font-family: var(--font-titles);
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.privacy-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gold-dark);
    font-weight: 400;
}

.privacy-header-inner .gold-line-header {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 20px auto 0;
}

.privacy-body {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(199, 164, 114, 0.15);
}

.privacy-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E5E5E5;
}

.privacy-intro p {
    font-size: 15px;
    line-height: 1.9;
    text-align: justify;
}

.privacy-item {
    margin-bottom: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid #E5E5E5;
}

.privacy-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-item .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: var(--black);
    font-family: var(--font-titles);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 15px;
}

.privacy-item h3 {
    font-family: var(--font-titles);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    line-height: 1.3;
}

.privacy-item p {
    margin-bottom: 12px;
    text-align: justify;
    line-height: 1.8;
}

.privacy-item ul {
    margin: 12px 0 12px 25px;
    padding: 0;
}

.privacy-item ul li {
    margin-bottom: 8px;
    text-align: justify;
    line-height: 1.7;
}

.privacy-item a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-item a:hover {
    color: var(--black);
    text-decoration: underline;
}

.privacy-item .highlight-box {
    background: linear-gradient(135deg, rgba(199, 164, 114, 0.08) 0%, rgba(199, 164, 114, 0.03) 100%);
    border-left: 4px solid var(--gold);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
}

.privacy-item .highlight-box p {
    margin: 0;
    font-weight: 500;
}

.privacy-item .highlight-box i {
    color: var(--gold);
    margin-right: 8px;
}

.contact-highlight {
    background-color: var(--black);
    color: var(--white);
    padding: 30px;
    border-radius: 16px;
    margin: 25px 0;
    text-align: center;
}

.contact-highlight h4 {
    font-family: var(--font-titles);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-highlight .contact-item {
    margin: 12px 0;
    font-size: 15px;
}

.contact-highlight .contact-item i {
    color: var(--gold);
    margin-right: 8px;
}

.contact-highlight a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-highlight a:hover {
    color: var(--white);
    text-decoration: underline;
}

.legal-reference {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
    text-align: center;
}

.legal-reference i {
    color: var(--gold);
    margin-right: 5px;
}

/* Footer privacy link */
.footer-privacy a {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive privacy */
@media (max-width: 991px) {
    .privacy-section-page { padding: 60px 0 80px; }
    .privacy-main-title { font-size: 30px; }
    .privacy-body { padding: 35px 30px; }
}

@media (max-width: 767px) {
    .privacy-main-title { font-size: 24px; }
    .privacy-body { padding: 25px 20px; border-radius: 16px; }
    .privacy-item h3 { font-size: 19px; }
    .contact-highlight { padding: 20px; }
    .contact-highlight h4 { font-size: 18px; }
}