﻿

:root {
    
    --primary-color: #002F5D; 
    
    --accent-color: #004a8f;
    
    --gold-accent: #C5A059;
    
    --light-bg: #f8f9fa;
    
    --text-color: #333333;
}


html, body {
    overflow-x: hidden; 
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0; 
    transition: padding 0.6s;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    padding: 10px 0; 
}

.navbar-brand img {
    max-height: 50px; 
    width: auto;
    margin-right: 0;
}


.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 17px;
    margin: 0; 
    padding: 28px 0 !important; 
    width: 150px; 
    text-align: center;
    position: relative;
    transition: color 0.6s ease;
}


.nav-link:hover {
    color: #ffffff !important;
}

.nav-link.active {
    color: var(--gold-accent) !important; 
}


.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 4px; 
    bottom: 0;
    left: 50%;
    background-color: #ffffff;
    transition: width 0.6s ease-in-out, left 0.6s ease-in-out, background-color 0.3s;
}

.nav-link:hover::before {
    width: 100%;
    left: 0;
    background-color: #ffffff;
}

.nav-link.active::before {
    width: 100%;
    left: 0;
    background-color: var(--gold-accent); 
}


.nav-link.active:hover::before {
    background-color: #ffffff;
}


@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeInDropdown 0.6s ease;
    }
    
    
    .dropdown-toggle-split {
        display: none !important;
    }
}



@keyframes fadeInDropdown {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}


.dropdown-menu {
    border: none;
    border-radius: 0; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 0;
    padding: 0; 
    width: 220px; 
    min-width: 220px;
    left: 50%; 
    top: 100%; 
    transform: translateX(-50%); 
    text-align: center; 
}

.dropdown-item {
    padding: 15px 10px; 
    color: var(--text-color);
    border-left: none; 
    border-bottom: 1px solid #f0f0f0; 
    transition: background-color 0.4s, color 0.4s;
    white-space: normal; 
    text-align: center; 
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    
}


.dropdown-toggle-split.nav-link {
    padding: 0 !important;
    width: 60px; 
}

.dropdown-toggle-split.nav-link::before {
    display: none !important;
}


@media (max-width: 991px) {
    .dropdown-item {
        border-bottom: none;
    }
}


.hero-section {
    
    background: linear-gradient(to right, rgba(0, 47, 93, 0.75), rgba(0, 74, 143, 0.65)), url('../img/landing-page.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0;
    position: relative;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 140px 0;
    }
}

.hero-badge {
    
    color: var(--gold-accent);
    padding: 0;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
        margin-left: -4px; 
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.hero-features {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-features i {
    color: var(--gold-accent);
}


.text-gold {
    color: var(--gold-accent) !important;
}


.contact-card {
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold-accent);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 47, 93, 0.05);
    height: 100%;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }
}

.contact-info-item {
    
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start; 
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-info-item > div:not(.contact-icon) {
    overflow-wrap: anywhere;
    min-width: 0;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 160, 89, 0.1); 
    color: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 47, 93, 0.05); 
    border-top: 4px solid var(--gold-accent);
}

.map-container iframe {
    display: block; 
}


.form-control-premium {
    background-color: #ffffff !important; 
    border: 1px solid #e0e0e0;
    border-radius: 4px; 
    padding: 1rem 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    border-color: var(--gold-accent);
    box-shadow: none;
    background-color: #ffffff;
}

.form-floating > .form-control-premium:focus ~ label,
.form-floating > .form-control-premium:not(:placeholder-shown) ~ label {
    color: var(--gold-accent);
    opacity: 1;
}

.form-floating > label {
    padding-left: 0.75rem;
    color: #999;
}


.legal-document {
    background-color: #ffffff;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-section p, .legal-section ul {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}


section {
    padding: 60px 0; 
}

.section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}


.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
    margin: 15px auto 0;
}

.bg-light-gray {
    background-color: var(--light-bg);
}


.service-card {
    background: white;
    border: none;
    border-radius: 8px; 
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); 
    transition: transform 0.6s ease, box-shadow 0.6s ease; 
    height: 100%; 
}


.service-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 12px 20px rgba(0, 47, 93, 0.15); 
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}


.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.6s;
    border: none;
}

.btn-primary-custom:hover {
    background-color: var(--accent-color);
    color: white;
}

.btn-outline-light:hover {
    color: var(--primary-color);
    background-color: white;
}








.section-padding {
    padding: 80px 0;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}


.service-card {
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold-accent); 
    text-align: left; 
    display: flex;
    flex-direction: column;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(197, 160, 89, 0.1); 
    color: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background-color: var(--gold-accent);
    color: white;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    margin-top: auto; 
}

.read-more-link:hover {
    color: var(--accent-color);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(5px);
}


.about-image-wrapper {
    padding-right: 0;
    padding-bottom: 60px; 
    text-align: center;
}

@media (min-width: 992px) {
    .about-image-wrapper {
        padding-right: 20px;
    }
}

.experience-badges-container {
    bottom: 0;
    right: 0;
    max-width: 100%; 
    
    
}

.experience-badge {
    min-width: 140px;
    transition: transform 0.3s ease;
}

.experience-badge:hover {
    transform: translateY(-5px);
}

.letter-spacing-1 {
    letter-spacing: 1px;
    font-size: 0.75rem;
    line-height: 1.4;
}

.pattern-dots {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    top: -20px;
    left: -20px;
    z-index: 1;
}

.btn-outline-primary-custom {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-color);
    color: white;
}


#scrollToTopBtn {
    display: none; 
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 0; 
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background-color 0.6s, transform 0.6s;
}

#scrollToTopBtn:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px); 
}


.reveal {
    opacity: 0;
    transform: translateY(30px); 
    transition: all 1.5s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.page-header {
    background: linear-gradient(to right, rgba(0, 47, 93, 0.85), rgba(0, 74, 143, 0.75)), url('../img/landing-page.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0;
}

.page-header .display-4 {
    font-weight: 800;
    letter-spacing: 1px;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-top: 15px;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--gold-accent);
}

.breadcrumb-item.active {
    color: var(--gold-accent);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}


@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding-bottom: 20px;
        border-top: 1px solid rgba(255,255,255,0.1); 
        text-align: center; 
    }

    .nav-link {
        width: 100%; 
        padding: 15px 0 !important; 
        text-align: center; 
        border-bottom: 1px solid rgba(255,255,255,0.1); 
        display: block;
    }

    
    .nav-item.dropdown {
        border-bottom: none; 
        padding: 0;
    }

    .dropdown-header-mobile .nav-link {
        width: auto; 
        display: inline-block;
        border-bottom: none;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .dropdown-toggle-split {
        color: rgba(255,255,255,0.9);
        padding: 15px 25px !important; 
        cursor: pointer;
        border-left: none; 
        font-size: 1.2rem; 
    }

    
    .nav-link::before {
        display: none;
    }

    
    .dropdown-menu {
        
        background-color: transparent; 
        box-shadow: none;
        padding: 0;
        margin: 0;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.1); 
        text-align: center;
        position: static !important; 
        width: 100%;
        float: none; 
    }

    .dropdown-item {
        color: rgba(255,255,255,0.9); 
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 0.95em;
        text-align: center !important; 
        display: block; 
        width: 100%;
    }

    .dropdown-item:hover, .dropdown-item:focus {
        background-color: rgba(255,255,255,0.1);
        color: #ffffff;
    }
}


@media (max-width: 991px) {
    
    .dropdown-mobile-wrapper {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    
    .dropdown-toggle-split .fa-angle-down {
        transition: transform 0.3s ease;
    }
    
    .dropdown-toggle-split[aria-expanded="true"] .fa-angle-down {
        transform: rotate(-180deg); 
    }

    
    #dropdownOferta {
        background-color: var(--primary-color);
        padding: 0; 
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    
    #dropdownOferta ul {
        padding: 10px 0;
        border-bottom: none;
    }

    
    

    #dropdownOferta .dropdown-item {
        color: rgba(255,255,255,0.9);
        padding: 14px 0;
        border-bottom: none;
        font-size: 0.95em;
        text-align: center;
        background-color: transparent;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    #dropdownOferta .dropdown-item:hover {
        background-color: rgba(255,255,255,0.1);
        color: #ffffff;
    }
}



.contact-form-wrapper {
    border: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-top: 5px solid var(--gold-accent); 
}

.form-control {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2); 
    border: 1px solid var(--gold-accent) !important;
}

.form-check-input:checked {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
}

.contact-info-box {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold-accent); 
    box-shadow: 0 15px 35px rgba(0, 47, 93, 0.05); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}

.contact-info-box .icon-box {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    
    background-color: rgba(197, 160, 89, 0.1) !important; 
    color: var(--gold-accent) !important;
}

.map-wrapper {
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold-accent); 
}

.map-wrapper iframe {
    filter: none; 
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%); 
}


.footer-section {
    background-color: var(--primary-color);
    color: #d1d5db; 
    font-size: 0.95rem;
}

.footer-section h5 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow-wrap: anywhere;
}

.footer-section a:hover {
    color: var(--gold-accent) !important;
    padding-left: 5px;
}


.footer-title {
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--gold-accent);
    margin-top: 10px;
    border-radius: 2px;
}


.footer-section ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-section ul li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section i {
    color: var(--gold-accent);
    font-size: 1.2rem;
    min-width: 35px; 
    margin-top: 3px;
    text-align: left; 
}


.legal-data {
    margin-top: 20px;
}




.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.hours-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: #ffffff !important;
    padding-left: 0;
}


@media (max-width: 991px) {
    .footer-section {
        text-align: center;
    }

    .footer-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-section ul li span{
        justify-content: center;
        text-align: left; 
        flex-direction: row; 
        align-items: center; 
    }
    
    .footer-section i {
        margin-top: 0; 
    }
    
    
    .hours-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    
    .legal-data .row {
        justify-content: center;
        text-align: center;
    }
    
    .legal-data .col-auto {
        margin-bottom: 15px;
    }

    
    .footer-section .col-lg-5,
    .footer-section .col-lg-3,
    .footer-section .col-lg-4 {
        margin-bottom: 10px;
    }

    .footer-section .col-lg-4:last-child {
        margin-bottom: 0;
    }

    .footer-bottom {
        margin-top: 12px;
        padding-top: 20px;
    }

    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


.process-step {
    position: relative;
    padding: 20px;
    text-align: center;
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.process-step:hover .process-icon-wrapper {
    transform: scale(1.1);
    background-color: var(--accent-color);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px; 
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #dee2e6;
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 991px) {
    .process-step::after {
        display: none;
    }
    .process-step {
        margin-bottom: 30px;
    }
}


.accordion-item {
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border-radius: 4px !important;
    box-shadow: none;
    background-color: transparent;
    overflow: visible;
}

.accordion-button {
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 700;
    padding: 25px 30px;
    border: none;
    border-radius: 4px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03) !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--gold-accent);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
    border-left: 4px solid var(--gold-accent);
    border-radius: 4px 4px 0 0 !important;
}


.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23002F5D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C5A059'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 10px 30px 30px 30px;
    background-color: #fff;
    line-height: 1.8;
    color: #555;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.text-gold{
    color: var(--gold-accent);
}

.brand-text-line1, .brand-text-line2 {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .brand-logo {
        max-height: 35px !important;
        margin-right: 0.5rem !important;
    }
    
    .brand-text-line1, .brand-text-line2 {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .navbar-brand {
        margin-right: 0;
        padding: 5px 0;
    }
    
    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 380px) {
    .brand-text-line1, .brand-text-line2 {
        font-size: 0.5rem;
        letter-spacing: 0;
    }
    .brand-logo {
        max-height: 30px !important;
    }
}


#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none; 
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    #cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 20px 50px;
    }
}

#cookie-banner p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    #cookie-banner p {
        margin: 0 20px 0 0;
        flex: 1;
    }
}

#cookie-banner .cookie-buttons {
    display: flex;
    gap: 10px;
}

#cookie-banner .btn-accept {
    background-color: var(--gold-accent);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

#cookie-banner .btn-accept:hover {
    background-color: #b08d48;
}

#cookie-banner .btn-reject {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#cookie-banner .btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}


#cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 2px solid var(--gold-accent);
    display: none; 
    transition: transform 0.3s;
}

#cookie-settings-btn:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}




.social-nav-link {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    text-decoration: none;
}

.social-nav-link:hover {
    color: var(--gold-accent);
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .social-icons-container {
        margin-top: 20px;
        justify-content: center;
        padding-bottom: 20px;
        
        padding-top: 0; 
        width: 100%;
    }
}

