:root {
    --primary-cold: #2563eb;
    --primary-warm: #f59e0b;
    --secondary-cold: #475569;
    --secondary-warm: #dc2626;
    --accent-cold: #0891b2;
    --accent-warm: #ea580c;
    --neutral-100: #f8fafc;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    --vintage-paper: #faf7f0;
    --vintage-sepia: #8b7355;
    --gradient-cold: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --shadow-vintage: 0 8px 32px rgba(30, 64, 175, 0.12);
    --border-vintage: 1px solid rgba(203, 213, 225, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--neutral-700);
    background: var(--vintage-paper);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--neutral-800);
}

.vintage-nav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-vintage);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.vintage-nav .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--neutral-100) !important;
}

.brand-text {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vintage-nav .nav-link {
    color: var(--neutral-300) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.vintage-nav .nav-link:hover {
    color: var(--primary-warm) !important;
    transform: translateY(-2px);
}

.vintage-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-warm);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.vintage-nav .nav-link:hover::after {
    width: 100%;
}

.hero-section {
    background: var(--gradient-cold);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.offcanvas.show {
    height: 500px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    color: white;
}

.card-body {
    padding: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.vintage-btn-primary {
    background: var(--gradient-warm);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-vintage);
}

.vintage-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(245, 158, 11, 0.3);
    background: var(--gradient-warm);
    border: none;
}

.vintage-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 32px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vintage-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--gradient-warm);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-700);
    text-align: center;
    margin: 0 auto;
}

.features-section {
    background: var(--neutral-100);
    position: relative;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-vintage);
    border: var(--border-vintage);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 64px rgba(30, 64, 175, 0.15);
}

.feature-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background: var(--gradient-cold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
}

.security-section {
    background: white;
    padding: 80px 0;
}

.security-item {
    padding: 1rem 0;
    border-bottom: var(--border-vintage);
}

.security-item:last-child {
    border-bottom: none;
}

.solutions-section {
    background: var(--neutral-100);
    padding: 80px 0;
}

.solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-vintage);
    border: var(--border-vintage);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 64px rgba(30, 64, 175, 0.15);
}

.solution-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.solution-card:hover .card-img-top {
    transform: scale(1.05);
}

.vintage-btn-outline-primary {
    border: 2px solid var(--primary-cold);
    color: var(--primary-cold);
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.vintage-btn-outline-primary:hover {
    background: var(--gradient-cold);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonial-card {
    background: var(--neutral-100);
    padding: 2rem;
    border-radius: 20px;
    border: var(--border-vintage);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-vintage);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--neutral-700);
}

.testimonial-author {
    border-top: var(--border-vintage);
    padding-top: 1rem;
}

.contact-section {
    width: 100%;
    overflow: hidden;
    background: var(--neutral-100);
    padding: 80px 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-vintage);
    border: var(--border-vintage);
}

.vintage-input {
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: var(--neutral-100);
}

.vintage-input:focus {
    border-color: var(--primary-cold);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: white;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-vintage);
    border: var(--border-vintage);
    margin-bottom: 2rem;
}

.contact-item {
    padding: 0.5rem 0;
}

.contact-link {
    color: var(--primary-cold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-warm);
    text-decoration: underline;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-vintage);
}

.vintage-footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: 3rem 0 1rem;
    position: relative;
}

.vintage-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.footer-brand h5 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.footer-description {
    color: var(--neutral-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-warm);
    padding-left: 5px;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-vintage);
}

.newsletter-form .form-control {
    border: none;
    padding: 12px 20px;
    background: var(--neutral-100);
}

.newsletter-form .btn {
    border: none;
    padding: 12px 24px;
}

.footer-divider {
    border-color: var(--neutral-700);
    margin: 2rem 0 1rem;
}

.copyright-text {
    color: var(--neutral-400);
    font-size: 0.9rem;
    margin: 0;
}

.vintage-badge {
    background: var(--gradient-cold);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: 1rem 0;
    z-index: 1050;
    border-top: var(--border-vintage);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-link {
    color: var(--primary-warm);
    text-decoration: none;
}

.cookie-link:hover {
    color: var(--accent-warm);
    text-decoration: underline;
}

.offcanvas-end {
    --bs-offcanvas-width: 300px;
    background: var(--neutral-900);
}

.offcanvas-header {
    border-bottom: 1px solid var(--neutral-700);
    background: var(--neutral-800);
}

.offcanvas-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.offcanvas-body {
    background: var(--neutral-900);
}

.offcanvas .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--neutral-700);
    margin-bottom: 0;
}

.offcanvas .nav-link:last-child {
    border-bottom: none;
}

.privacy-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: white;
}

.privacy-header {
    padding-top: 2rem;
}

.privacy-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-vintage);
    border: var(--border-vintage);
}

.section-heading {
    color: var(--neutral-800);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--neutral-200);
}

.subsection-heading {
    color: var(--neutral-700);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.privacy-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-list li {
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
}

.contact-details {
    background: var(--neutral-100);
    padding: 1.5rem;
    border-radius: 12px;
    border: var(--border-vintage);
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .feature-card, .solution-card, .testimonial-card, .contact-form, .contact-info {
        margin-bottom: 2rem;
    }
    
    .vintage-footer {
        text-align: center;
    }
    
    .footer-badges {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
}
