:root {
    --burgundy: #722f37;
    --burgundy-light: #8d3f48;
    --burgundy-dark: #5a2529;
    --gold: #b8860b;
    --gold-light: #daa520;
    --gold-dark: #9a7209;
    --deep-blue: #191970;
    --deep-blue-light: #2a2a8a;
    --deep-blue-dark: #0f0f4a;
    --cream: #faf8f3;
    --cream-dark: #f0ede5;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #e5e5e5;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-blue) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo i {
    font-size: 2rem;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--burgundy) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.abstract-bg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
    background: var(--deep-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--deep-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(25, 25, 112, 0.4);
}

.btn-outline {
    background: var(--burgundy);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(114, 47, 55, 0.4);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--burgundy);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--burgundy) 100%);
    border-radius: 2px;
}

.advantages {
    padding: 5rem 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.15);
}

.advantage-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.services {
    padding: 5rem 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-blue) 100%);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    background: var(--gold);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--gold);
    font-size: 0.9rem;
}

.service-card.featured .service-features i {
    color: var(--gold-light);
}

.fleet {
    padding: 5rem 0;
    background: var(--white);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fleet-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.fleet-card:hover {
    border-color: var(--burgundy);
    transform: scale(1.05);
}

.fleet-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.fleet-icon i {
    font-size: 3rem;
    color: var(--gold);
}

.fleet-card h3 {
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.fleet-card p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.fleet-card .price {
    display: block;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.reviews {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--burgundy) 100%);
    color: var(--white);
}

.reviews .section-title {
    color: var(--white);
}

.reviews .section-title::after {
    background: var(--gold);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

.stars i {
    margin-right: 0.2rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer i {
    font-size: 3rem;
    color: var(--gold);
}

.reviewer strong {
    display: block;
    margin-bottom: 0.2rem;
}

.reviewer span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.booking {
    padding: 5rem 0;
    background: var(--white);
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--burgundy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact {
    padding: 5rem 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold);
    width: 50px;
    height: 50px;
    background: var(--burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.newsletter {
    padding: 3rem 0;
    background: var(--burgundy);
    color: var(--white);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.newsletter-text i {
    font-size: 3rem;
    color: var(--gold);
}

.newsletter-text h3 {
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    min-width: 300px;
}

.footer {
    background: var(--deep-blue-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-col ul li a:hover,
.footer-col ul li a.active {
    opacity: 1;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.7;
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-blue) 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    padding: 1.5rem;
    z-index: 2000;
    display: none;
    border-radius: 15px;
    max-width: 380px;
    animation: slideUp 0.5s ease-out;
}

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

.cookie-consent.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-content i {
    font-size: 2rem;
    color: var(--gold);
    background: rgba(255,255,255,0.15);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.cookie-text h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cookie-buttons button {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    justify-content: center;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--cream);
    border-radius: 8px;
}

.cookie-option h4 {
    color: var(--burgundy);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.cookie-option p {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.cookie-option input[type="checkbox"] {
    width: 50px;
    height: 25px;
    cursor: pointer;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.page-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-section {
    padding: 5rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.15);
}

.blog-icon {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-icon i {
    font-size: 5rem;
    color: var(--gold);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: var(--gray-medium);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.blog-content h2 {
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.blog-content h2 a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h2 a:hover {
    color: var(--gold);
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

.article-page {
    padding: 3rem 0;
    background: var(--white);
}

.article-header {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.back-link {
    color: var(--burgundy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: gap 0.3s;
}

.back-link:hover {
    gap: 1rem;
}

.article-header h1 {
    color: var(--burgundy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    color: var(--gray-medium);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-icon-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    height: 200px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-blue) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-icon-header i {
    font-size: 6rem;
    color: var(--gold);
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content .lead {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.article-content h2 {
    color: var(--burgundy);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-content h2 i {
    color: var(--gold);
}

.article-content h3 {
    color: var(--deep-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1rem 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.info-box {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--gold);
}

.info-box.warning {
    border-left-color: var(--warning);
}

.info-box.emergency {
    border-left-color: var(--error);
}

.info-box h3 {
    color: var(--burgundy);
    margin-top: 0;
    margin-bottom: 1rem;
}

.article-cta {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 1.5rem;
}

.article-footer {
    max-width: 900px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-share a {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.article-share a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.legal-page {
    padding: 3rem 0;
    background: var(--white);
}

.legal-page h1 {
    color: var(--burgundy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-page h1 i {
    color: var(--gold);
}

.legal-intro {
    color: var(--gray-medium);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--burgundy);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    color: var(--deep-blue);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content code {
    background: var(--cream);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--burgundy);
}

.legal-footer {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.thank-you-section {
    padding: 5rem 0;
    background: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content i {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.thank-you-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--burgundy);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}