:root {
    --primary-color: #2B4C7E;
    --secondary-color: #404040;
    --accent-color: #E5D3B3;
    --light-bg: #F5F7FA;
    --border-color: #E9ECEF;
    --gradient-primary: linear-gradient(135deg, #2B4C7E 0%, #1B3B6F 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-bg);
    color: var(--secondary-color);
    padding-top: 0;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.search-form .form-control {
    border-radius: 2px 0 0 2px;
    border-color: var(--border-color);
    padding: 0.75rem 1rem;
}

.search-form .btn {
    border-radius: 0 2px 2px 0;
    padding: 0.75rem 1.25rem;
}


.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: white;
}

.navbar-menu {
    border-top: 1px solid var(--border-color);
    background: white;
    padding: 0.25rem 0;
}

.navbar-nav {
    display: flex;
    width: 100%;
}

.navbar-nav .nav-item {
    flex: 1;
    text-align: center;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem 0.25rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: rgba(43, 76, 126, 0.05);
}

@media (max-width: 991px) {
    .nav-link {
        padding: 0.4rem 0.2rem !important;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .nav-link {
        padding: 0.35rem 0.15rem !important;
        font-size: 0.8rem;
    }
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
}

.btn-link:hover {
    color: var(--primary-color);
}

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.badge {
    background-color: var(--primary-color);
}


.hero-section {
    position: relative;
    overflow: hidden;
}


.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    width: 100%;
}


.carousel-item > img.d-block.w-100 {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .carousel-item > img.d-block.w-100 {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .carousel-item > img.d-block.w-100 {
        max-height: 300px;
    }
}


.carousel-item .carousel-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 40%;
    overflow: hidden;
}

.carousel-item .carousel-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item .carousel-image-wrapper {
        padding-top: 60%;
    }
}

@media (max-width: 576px) {
    .carousel-item .carousel-image-wrapper {
        padding-top: 70%;
    }
}

.carousel-modern {
    height: auto;
    min-height: 400px;
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 40%;
    overflow: hidden;
}

.carousel-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-item.active .carousel-image-wrapper img {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.carousel-caption-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.carousel-content {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-caption-modern h1,
.carousel-caption-modern h2 {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.carousel-caption-modern .lead {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 90%;
}

.carousel-caption.text-dark {
    background: rgba(255, 255, 255, 0.9);
}

.carousel-caption h1,
.carousel-caption h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.carousel-caption .lead {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-modern {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(43, 76, 126, 0.4);
    transition: all 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 76, 126, 0.5);
}



.carousel-control-modern {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-control-modern:hover {
    opacity: 1;
    background-color: var(--primary-color);
}

.carousel-control-modern .carousel-control-prev-icon,
.carousel-control-modern .carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

.carousel-control-prev-modern {
    left: 30px;
}

.carousel-control-next-modern {
    right: 30px;
}

@media (max-width: 768px) {
    .carousel-modern {
        min-height: 300px;
    }
    
    .carousel-image-wrapper {
        padding-top: 60%;
    }
    
    .carousel-caption-modern {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .carousel-caption-modern h1,
    .carousel-caption-modern h2 {
        font-size: 2rem;
    }
    
    .carousel-caption-modern .lead {
        font-size: 1rem;
    }
    
    .carousel-caption {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.75rem;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .btn-modern {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .carousel-control-modern {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev-modern {
        left: 10px;
    }
    
    .carousel-control-next-modern {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .carousel-image-wrapper {
        padding-top: 70%;
    }
}


footer {
    color: var(--secondary-color);
}

footer h5 {
    color: var(--primary-color);
    font-weight: 600;
}

footer a {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

footer .input-group .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

footer .input-group .btn:hover {
    background-color: darken(var(--primary-color), 10%);
}


.cookie-consent {
    border-top: 3px solid var(--primary-color);
}
.contact-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0;
}

.contact-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(43, 76, 126, 0.25);
}

.service-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background: white;
}

.service-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}


.payment-icons i {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icons i:hover {
    opacity: 1;
}


.card-img-top,
.category-card img,
.carousel-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.category-card img {
    height: 300px;
}

@media (max-width: 768px) {
    .card-img-top,
    .category-card img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .card-img-top,
    .category-card img {
        height: 200px;
    }
}
