:root {
    --vintage-navy: #2D3748;
    --vintage-slate: #4A5568;
    --vintage-blue: #5A67D8;
    --vintage-teal: #38B2AC;
    --vintage-gray: #718096;
    --vintage-light-gray: #E2E8F0;
    --vintage-white: #F7FAFC;
    --warm-copper: #DD6B20;
    --warm-gold: #D69E2E;
    --warm-rose: #E53E3E;
    --warm-peach: #ED8936;
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Lora', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-primary);
    font-size: 16px;
    background-color: var(--vintage-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.text-accent {
    color: var(--warm-copper) !important;
}

.vintage-nav {
    background: linear-gradient(135deg, var(--vintage-navy) 0%, var(--vintage-slate) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--warm-copper);
    box-shadow: 0 4px 20px rgba(45, 55, 72, 0.15);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none !important;
    color: var(--vintage-white) !important;
    transition: color 0.3s ease;
}

.brand-text {
    background: linear-gradient(45deg, var(--vintage-white), var(--warm-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo-img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: rotate(5deg) scale(1.1);
}

.navbar-nav .nav-link {
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--vintage-light-gray) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--warm-copper), var(--warm-gold));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--warm-gold) !important;
    transform: translateY(-2px);
}

.vintage-offcanvas {
    background: linear-gradient(135deg, var(--vintage-navy) 0%, var(--vintage-slate) 100%);
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--warm-copper);
}

.offcanvas-title {
    font-family: var(--font-primary);
    color: var(--vintage-white);
    font-size: 1.25rem;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--vintage-navy) 0%, var(--vintage-slate) 50%, var(--vintage-teal) 100%);
    color: var(--vintage-white);
    position: relative;
    overflow: hidden;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(221, 107, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(214, 158, 46, 0.08) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(1deg); }
    50% { transform: translate(-15px, 10px) rotate(-1deg); }
    75% { transform: translate(10px, 20px) rotate(0.5deg); }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: heroTitleSlide 1s ease-out;
}

@keyframes heroTitleSlide {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.accent-text {
    color: var(--warm-gold);
    font-style: italic;
    position: relative;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--warm-copper), var(--warm-gold));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 500px;
    animation: heroSubtitleSlide 1s ease-out 0.3s both;
}

@keyframes heroSubtitleSlide {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 0.9; }
}

.hero-buttons {
    animation: heroButtonsSlide 1s ease-out 0.6s both;
}

@keyframes heroButtonsSlide {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.btn-vintage-primary {
    background: linear-gradient(45deg, var(--warm-copper), var(--warm-gold));
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(221, 107, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-vintage-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-vintage-primary:hover::before {
    left: 100%;
}

.btn-vintage-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(221, 107, 32, 0.4);
    color: white;
}

.btn-vintage-outline {
    background: transparent;
    border: 2px solid var(--warm-gold);
    color: var(--warm-gold);
    padding: 10px 28px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-vintage-outline:hover {
    background: var(--warm-gold);
    color: var(--vintage-navy);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.3);
}

.hero-image-wrapper {
    position: relative;
    animation: heroImageSlide 1s ease-out 0.9s both;
}

@keyframes heroImageSlide {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.rounded-vintage {
    border-radius: 15px 50px 15px 50px;
}

.shadow-vintage {
    box-shadow: 
        0 10px 30px rgba(45, 55, 72, 0.3),
        0 4px 12px rgba(221, 107, 32, 0.15);
}

.hero-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px dashed var(--warm-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: decorationRotate 15s linear infinite;
}

@keyframes decorationRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-down {
    color: var(--warm-gold);
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--warm-copper);
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.smooth-scroll {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--vintage-navy);
    text-align: center;
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--warm-copper), var(--warm-gold));
    border-radius: 2px;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 0;
    background: var(--vintage-white);
}

.about-image-stack {
    position: relative;
}

.main-img {
    width: 100%;
    z-index: 2;
    position: relative;
}

.overlay-img {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 60%;
    z-index: 3;
    border: 4px solid var(--vintage-white);
}

.shadow-soft {
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.15);
}

.about-subtitle {
    color: var(--vintage-slate);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-secondary);
}

.services-section {
    padding: 80px 0;
    background: var(--vintage-light-gray);
}

.bg-vintage-light {
    background: var(--vintage-light-gray);
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(45, 55, 72, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--warm-copper);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(221, 107, 32, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 55, 72, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--warm-copper), var(--warm-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(221, 107, 32, 0.3);
}

.service-title {
    color: var(--vintage-navy);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    background: linear-gradient(45deg, var(--vintage-teal), var(--vintage-blue));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.why-section {
    padding: 80px 0;
    background: var(--vintage-white);
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.why-number {
    background: linear-gradient(45deg, var(--warm-copper), var(--warm-gold));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-primary);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(221, 107, 32, 0.3);
}

.why-text h4 {
    color: var(--vintage-navy);
    margin-bottom: 0.5rem;
}

.why-text p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.1);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--warm-gold);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--warm-copper);
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-section {
    padding: 80px 0;
    background: var(--vintage-light-gray);
}

.vintage-form .form-label {
    font-weight: 500;
    color: var(--vintage-slate);
    margin-bottom: 0.5rem;
}

.vintage-form .form-control,
.vintage-form .form-select {
    border: 2px solid var(--vintage-light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.vintage-form .form-control:focus,
.vintage-form .form-select:focus {
    border-color: var(--warm-copper);
    box-shadow: 0 0 0 0.2rem rgba(221, 107, 32, 0.25);
    outline: none;
}

.vintage-form .form-check-input {
    border: 2px solid var(--vintage-gray);
    transition: all 0.3s ease;
}

.vintage-form .form-check-input:checked {
    background-color: var(--warm-copper);
    border-color: var(--warm-copper);
}

.vintage-form .form-check-label {
    color: var(--text-secondary);
}

.vintage-form .form-check-label a {
    color: var(--warm-copper);
    text-decoration: none;
    font-weight: 500;
}

.vintage-form .form-check-label a:hover {
    text-decoration: underline;
}

.location-section {
    padding: 80px 0;
    background: var(--vintage-white);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--vintage-light-gray);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.1);
    border-left: 4px solid var(--warm-copper);
    height: fit-content;
}

.contact-card-title {
    color: var(--vintage-navy);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-item i {
    margin-top: 0.2rem;
}

.contact-link {
    color: var(--warm-copper);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--warm-gold);
    text-decoration: underline;
}

.vintage-footer {
    background: linear-gradient(135deg, var(--vintage-navy) 0%, var(--vintage-slate) 100%);
    color: var(--vintage-light-gray);
    position: relative;
}

.vintage-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--warm-copper), var(--warm-gold));
}

.footer-brand h5 {
    color: var(--vintage-white);
    font-family: var(--font-primary);
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.vintage-ornament {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--warm-copper), var(--warm-gold));
    border-radius: 2px;
}

.footer-title {
    color: var(--vintage-white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--vintage-light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--warm-gold);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--warm-copper);
    width: 20px;
}

.footer-vintage-seal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--warm-gold);
    font-weight: 500;
}

.footer-vintage-seal i {
    font-size: 1.2rem;
}

.footer-divider {
    border-color: var(--vintage-gray);
    opacity: 0.3;
    margin: 2rem 0 1rem;
}

.footer-copyright {
    opacity: 0.8;
}

.footer-tagline {
    color: var(--warm-gold);
    font-style: italic;
    font-size: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--vintage-navy) 0%, var(--vintage-slate) 100%);
    color: var(--vintage-white);
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(45, 55, 72, 0.3);
    border-top: 3px solid var(--warm-copper);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-link {
    color: var(--warm-gold) !important;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline !important;
}

.btn-cookie-accept {
    background: linear-gradient(45deg, var(--warm-copper), var(--warm-gold));
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(221, 107, 32, 0.4);
}

.privacy-header {
    padding: 60px 0;
    background: var(--vintage-light-gray);
}

.privacy-title {
    font-family: var(--font-primary);
    color: var(--vintage-navy);
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.privacy-date {
    font-size: 1rem;
    color: var(--vintage-gray);
}

.privacy-content {
    padding: 60px 0;
}

.privacy-text {
    line-height: 1.8;
}

.privacy-intro .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section-title {
    color: var(--vintage-navy);
    font-family: var(--font-primary);
    border-bottom: 2px solid var(--warm-copper);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.privacy-subsection-title {
    color: var(--vintage-slate);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-contact-card {
    background: var(--vintage-light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--warm-copper);
    margin: 1rem 0;
}

.privacy-contact-card h5 {
    color: var(--vintage-navy);
    margin-bottom: 1rem;
}

.privacy-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-list li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.privacy-legal-basis {
    margin: 1.5rem 0;
}

.legal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--vintage-white);
    border-radius: 8px;
    border-left: 3px solid var(--warm-copper);
    box-shadow: 0 2px 8px rgba(45, 55, 72, 0.05);
}

.legal-item i {
    margin-top: 0.2rem;
}

.cookie-types {
    margin: 1.5rem 0;
}

.cookie-type {
    background: var(--vintage-white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--vintage-teal);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(45, 55, 72, 0.05);
}

.cookie-type h5 {
    color: var(--vintage-slate);
    margin-bottom: 0.5rem;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--vintage-white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--vintage-blue);
    box-shadow: 0 2px 8px rgba(45, 55, 72, 0.05);
}

.security-item i {
    color: var(--vintage-blue);
    font-size: 1.2rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--vintage-white);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--warm-gold);
    box-shadow: 0 2px 8px rgba(45, 55, 72, 0.05);
}

.right-item i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.privacy-link {
    color: var(--warm-copper);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    color: var(--warm-gold);
    text-decoration: underline;
}

.privacy-contact-section {
    margin-top: 3rem;
}

.privacy-contact-box {
    background: linear-gradient(135deg, var(--vintage-light-gray) 0%, var(--vintage-white) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid var(--warm-copper);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.1);
}

.privacy-contact-box h4 {
    color: var(--vintage-navy);
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
    }
    
    .overlay-img {
        display: none;
    }
    
    .why-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .security-measures {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner .row {
        text-align: center;
    }
    
    .cookie-banner .col-md-8 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .privacy-text {
        font-size: 0.95rem;
    }
    
    .privacy-contact-box {
        padding: 1.5rem;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}