/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

section h2 i {
    color: #ff6b35;
    margin-right: 15px;
}

/* Services Overview */
.services-overview {
    background: #fff;
}

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

.service-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Fleet Preview */
.fleet-preview {
    background: #f8f8f8;
}

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

.fleet-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-card i {
    font-size: 3rem;
    color: #ffa726;
    margin-bottom: 20px;
}

.fleet-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.fleet-card ul {
    list-style: none;
    text-align: left;
}

.fleet-card ul li {
    padding: 8px 0;
    color: #666;
}

.fleet-card ul li i {
    color: #4caf50;
    margin-right: 10px;
    font-size: 1rem;
}

/* Reservation Form */
.reservation {
    background: #fff;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #ff6b35;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #e55a2b;
}

/* Why Choose Us */
.why-choose {
    background: #f8f8f8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 3rem;
    color: #ff7043;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: #fff;
}

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

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stars {
    color: #ffa726;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 600;
}

.testimonial-author i {
    color: #ff6b35;
    font-size: 1.5rem;
}

/* Contact Info */
.contact-info {
    background: #f8f8f8;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 2.5rem;
    color: #ff6b35;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-section h3 i {
    margin-right: 10px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #e55a2b;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content i {
    font-size: 2rem;
    color: #ffa726;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #e55a2b;
}

.btn-secondary {
    background: #666;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #555;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #ff6b35;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ff6b35;
    color: white;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

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

.cookie-modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #333;
    margin-bottom: 20px;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.cookie-option label {
    display: block;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.cookie-option input {
    margin-right: 10px;
}

.cookie-option span {
    display: block;
    font-weight: normal;
    color: #666;
    margin-top: 5px;
    margin-left: 25px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 30px;
}

.cookie-modal-buttons .btn-outline {
    color: #ff6b35;
    border: 2px solid #ff6b35;
    background: transparent;
}

.cookie-modal-buttons .btn-outline:hover {
    background: #ff6b35;
    color: white;
}

/* Thank You Page Styles */
.thank-you {
    padding: 120px 0 80px;
    background: #f8f8f8;
    min-height: 80vh;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon i {
    font-size: 5rem;
    color: #4caf50;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.thank-you-content .lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thank-you-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 10px;
}

.detail-item i {
    color: #ff6b35;
    font-size: 1.5rem;
}

.next-steps {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.next-steps h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.next-steps ul {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.next-steps ul li {
    padding: 10px 0;
    color: #666;
    line-height: 1.6;
}

.next-steps ul li i {
    color: #4caf50;
    margin-right: 10px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thank-you-actions .btn-outline {
    color: #ff6b35;
    border: 2px solid #ff6b35;
    background: transparent;
}

.thank-you-actions .btn-outline:hover {
    background: #ff6b35;
    color: white;
}

.emergency-contact {
    background: #fff3e0;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ffa726;
}

.emergency-contact h4 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-contact h4 i {
    color: #ffa726;
}

.emergency-contact p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b35;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.phone-number:hover {
    background: #e55a2b;
}

.small-text {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header h1 i {
    margin-right: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.company-story {
    padding: 80px 0;
    background: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 30px;
    color: #333;
}

.story-text h2 i {
    color: #ff6b35;
    margin-right: 15px;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
    font-size: 1.1rem;
}

.story-icon {
    font-size: 8rem;
    color: #ffa726;
    opacity: 0.8;
}

.statistics {
    background: #f8f8f8;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

.mission-values {
    background: #fff;
    padding: 80px 0;
}

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

.mission-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: #f9f9f9;
    border-top: 4px solid #ff6b35;
}

.mission-item i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.mission-item h3 {
    margin-bottom: 20px;
    color: #333;
}

.mission-item p {
    color: #666;
    line-height: 1.7;
}

.team {
    background: #f8f8f8;
    padding: 80px 0;
}

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

.team-member {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.member-icon {
    margin-bottom: 20px;
}

.member-icon i {
    font-size: 4rem;
    color: #ff6b35;
}

.team-member h3 {
    margin-bottom: 10px;
    color: #333;
}

.position {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

.certifications {
    background: #fff;
    padding: 80px 0;
}

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

.cert-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.cert-item:hover {
    border-color: #ff6b35;
}

.cert-item i {
    font-size: 3rem;
    color: #ffa726;
    margin-bottom: 20px;
}

.cert-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.cert-item p {
    color: #666;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-container,
.contact-info-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-container h2,
.contact-info-container h2 {
    text-align: left;
    margin-bottom: 30px;
    color: #333;
}

.contact-form-container h2 i,
.contact-info-container h2 i {
    color: #ff6b35;
    margin-right: 15px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-group a {
    color: #ff6b35;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 5px;
}

.contact-detail h3 {
    margin-bottom: 10px;
    color: #333;
}

.contact-detail p {
    color: #666;
    margin-bottom: 5px;
}

.contact-detail a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.small {
    font-size: 0.9rem;
    color: #999;
}

.office-locations {
    background: #fff;
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.location-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #ff6b35;
}

.location-card i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.location-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.location-card p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-section {
    background: #f8f8f8;
    padding: 80px 0;
}

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

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: #ff6b35;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Active navigation link */
.nav-menu a.active {
    color: #ff6b35;
    font-weight: 600;
}

/* Blog Styles */
.blog-posts {
    background: #f8f8f8;
    padding: 80px 0;
}

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

.blog-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-icon {
    text-align: center;
    margin-bottom: 20px;
}

.blog-icon i {
    font-size: 3rem;
    color: #ff6b35;
    background: #fff3e0;
    padding: 20px;
    border-radius: 50%;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: #ff6b35;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.reading-time {
    color: #999;
    font-size: 0.9rem;
}

.read-more {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* Newsletter Signup */
.newsletter-signup {
    background: #fff;
    padding: 80px 0;
}

.newsletter-content {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    padding: 60px 40px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    color: white;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.newsletter-text h2 i {
    margin-right: 15px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    min-width: 300px;
}

.newsletter-form button {
    background: #333;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #555;
}

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    color: white;
    padding: 120px 0 80px;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    margin: 0 10px;
    color: rgba(255,255,255,0.6);
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-content {
    padding: 80px 0;
    background: #f8f8f8;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-post-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-intro {
    background: #fff3e0;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ffa726;
    margin-bottom: 40px;
}

.article-intro i {
    font-size: 2rem;
    color: #ff6b35;
    float: left;
    margin-right: 20px;
    margin-top: 5px;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-post-content h2 i {
    color: #ff6b35;
}

.blog-post-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.blog-post-content ul {
    margin-bottom: 30px;
    padding-left: 0;
}

.blog-post-content ul li {
    list-style: none;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.blog-post-content ul li i {
    color: #4caf50;
    margin-top: 3px;
}

.article-cta {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    border: 2px solid #ff6b35;
}

.article-cta h3 {
    color: #333;
    margin-bottom: 15px;
}

.article-cta h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.sidebar-widget h3 i {
    color: #ff6b35;
    margin-right: 10px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.sidebar-widget ul li a:hover {
    color: #ff6b35;
}

.sidebar-widget ul li span {
    color: #999;
    font-size: 0.9rem;
    float: right;
}

.contact-widget {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    color: white;
}

.contact-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.contact-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

/* Services Styles */
.main-services {
    background: #fff;
    padding: 80px 0;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: flex-start;
}

.service-icon {
    background: #fff3e0;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.service-icon i {
    font-size: 4rem;
    color: #ff6b35;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.service-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-content h3 {
    margin: 30px 0 15px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-content h3 i {
    color: #ff6b35;
}

.service-content ul {
    margin-bottom: 30px;
}

.pricing-table, .discount-table {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.price-item, .discount-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.price-item:last-child, .discount-item:last-child {
    border-bottom: none;
}

.car-class, .period {
    font-weight: 600;
    color: #333;
}

.price, .discount {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1rem;
}

.corporate-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.package {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.package:hover {
    border-color: #ff6b35;
}

.package h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.package p {
    color: #666;
    margin-bottom: 15px;
}

.package-price {
    background: #ff6b35;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.additional-services {
    background: #f8f8f8;
    padding: 80px 0;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.additional-service {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
}

.additional-service i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.additional-service h3 {
    margin-bottom: 15px;
    color: #333;
}

.additional-service p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.additional-service .price {
    background: #fff3e0;
    color: #ff6b35;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.booking-process {
    background: #fff;
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    padding: 80px 0;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content h2 i {
    margin-right: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: white;
    color: #ff6b35;
}

/* Legal Pages Styles */
.legal-content {
    background: #f8f8f8;
    padding: 80px 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-meta {
    background: #fff3e0;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #ffa726;
}

.legal-meta p {
    margin: 0;
    color: #666;
    font-weight: 600;
}

.legal-document h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 15px;
}

.legal-document h2 i {
    color: #ff6b35;
}

.legal-document h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    color: #333;
}

.legal-document p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.legal-document ul {
    margin-bottom: 30px;
    padding-left: 0;
}

.legal-document ul li {
    list-style: none;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.legal-document ul li i {
    color: #4caf50;
    margin-top: 3px;
}

.legal-document ul li i.fa-times {
    color: #f44336;
}

.data-retention {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.retention-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.retention-item h4 {
    margin-bottom: 10px;
    color: #333;
}

.retention-item p {
    margin: 0;
    color: #666;
    font-weight: 600;
}

.contact-info-legal {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.contact-info-legal p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-legal i {
    color: #ff6b35;
    width: 20px;
}

.emergency-contact-legal {
    background: #fff3e0;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ffa726;
    margin: 40px 0;
    text-align: center;
}

.emergency-contact-legal h3 {
    color: #333;
    margin-bottom: 20px;
}

.emergency-contact-legal h3 i {
    color: #ffa726;
}

.emergency-contact-legal p {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.legal-footer {
    background: #333;
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
}

.legal-footer p {
    margin: 0;
    color: #ccc;
    line-height: 1.6;
}

/* Cookie Management Styles */
.cookie-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.cookie-category {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    border-top: 4px solid #ff6b35;
}

.cookie-category h4 {
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-category h4 i {
    color: #ff6b35;
}

.cookie-category p {
    margin: 8px 0;
    color: #666;
}

.cookie-preferences {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin: 40px 0;
}

.cookie-preferences h3 {
    color: white;
    margin-bottom: 15px;
}

.cookie-preferences h3 i {
    margin-right: 10px;
}

.cookie-preferences p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cookie-preferences .btn-primary {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cookie-preferences .btn-primary:hover {
    background: #f0f0f0;
}

/* Simple Article Design - No Sidebar */
.article-header-simple {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    color: white;
    padding: 100px 0 60px;
}

.breadcrumb-simple {
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.breadcrumb-simple a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-simple a:hover {
    color: white;
}

.breadcrumb-simple span {
    margin: 0 10px;
    color: rgba(255,255,255,0.6);
}

.article-header-simple h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.article-meta-simple {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0.9;
    font-size: 0.9rem;
}

.article-meta-simple span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-content-simple {
    padding: 60px 0;
    background: #f8f8f8;
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    line-height: 1.7;
}

.article-intro-simple {
    background: #fff3e0;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ffa726;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #555;
}

.article-text h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    color: #333;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.article-text h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    color: #333;
}

.article-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1rem;
}

.article-text ul, .article-text ol {
    margin-bottom: 25px;
    padding-left: 0;
}

.article-text ul li, .article-text ol li {
    list-style: none;
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.article-text ul li:before {
    content: "▸";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.article-text ol {
    counter-reset: item;
}

.article-text ol li {
    counter-increment: item;
}

.article-text ol li:before {
    content: counter(item) ".";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.article-text strong {
    color: #333;
    font-weight: 600;
}

.article-summary {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #4caf50;
    margin: 40px 0;
}

.article-summary h3 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-summary h3 i {
    color: #4caf50;
}

.article-summary p {
    margin: 0;
    color: #666;
}

.article-cta-simple {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.article-cta-simple h3 {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.article-cta-simple h3 i {
    color: white;
}

.article-cta-simple p {
    margin-bottom: 25px;
    opacity: 0.9;
    color: white;
}

.article-cta-simple .btn-primary {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.article-cta-simple .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .thank-you-details {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-content {
        padding: 40px 20px;
    }
}