/* Cheap Car Rental Oman - Main Styles */
/* https://cheapcarrentaloman.com */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

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

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #C28135 0%, #8B5A2B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo span {
    color: #1B4D5C;
    font-weight: 400;
    font-size: 18px;
    -webkit-text-fill-color: #1B4D5C;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

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

nav a:hover {
    color: #C28135;
}

.mobile-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/img/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

h1 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 25px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #C28135 0%, #A66D2C 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(194, 129, 53, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 129, 53, 0.5);
}

/* Booking Section */
.booking-section {
    padding: 40px 0;
    background: #f5f5f0;
}

.booking-widget {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-height: 400px;
}

/* Quick Answers Section */
.quick-answers {
    padding: 60px 0;
    background: white;
}

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

.answer-box {
    padding: 25px;
    background: #f8f8f5;
    border-radius: 8px;
    border-left: 4px solid #C28135;
}

.answer-box strong {
    display: block;
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
}

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

.price-highlight {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
}

.numbered-tips {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.numbered-tips h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.numbered-tips ol {
    list-style: none;
    counter-reset: tips-counter;
    padding: 0;
}

.numbered-tips ol li {
    counter-increment: tips-counter;
    margin-bottom: 18px;
    padding-left: 50px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.numbered-tips ol li::before {
    content: counter(tips-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #C28135 0%, #8B5A2B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

/* Sections Common Styles */
h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-intro {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

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

.step {
    text-align: center;
    padding: 25px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C28135 0%, #8B5A2B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

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

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f8f5;
}

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

.benefit-card {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

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

.benefit-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

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

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-table {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: #1a1a2e;
    color: white;
    padding: 18px;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 18px;
    border-bottom: 1px solid #eee;
}

.pricing-table tr:nth-child(even) {
    background: #f8f8f5;
}

.pricing-table a {
    color: #C28135;
    text-decoration: none;
    font-weight: 500;
}

.price-note {
    text-align: center;
    margin-top: 25px;
    color: #666;
    font-size: 14px;
}

/* Car Types Section */
.car-types {
    padding: 80px 0;
    background: #f8f8f5;
}

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

.car-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.car-card:hover {
    transform: translateY(-3px);
}

.car-card.featured {
    border: 2px solid #C28135;
}

.car-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

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

.car-link {
    color: #C28135;
    text-decoration: none;
    font-weight: 600;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background: white;
}

.location-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.location-card {
    flex: 1 1 350px;
    max-width: 380px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    position: relative;
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(27, 77, 92, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    z-index: 1;
}

.location-badge.featured {
    background: rgba(194, 129, 53, 0.95);
}

.location-image {
    width: 100%;
    height: 180px;
    background-color: #1B4D5C;
    background-size: cover;
    background-position: center;
}

.location-content {
    padding: 25px;
}

.location-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
}

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

.location-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.location-features li {
    padding: 5px 0;
    color: #555;
}

.location-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1B4D5C 0%, #154552 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.cities-grid {
    margin-top: 50px;
    text-align: center;
}

.cities-grid h3 {
    margin-bottom: 25px;
    color: #333;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.city-item {
    background: #f8f8f5;
    padding: 12px 24px;
    border-radius: 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.city-item:hover {
    background: #C28135;
    color: white;
}

/* Driving Rules Section */
.driving-rules {
    padding: 80px 0;
    background: #f8f8f5;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.rule-card {
    padding: 25px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #1B4D5C;
}

.rule-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

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

/* Best Places Section */
.best-places {
    padding: 80px 0;
    background: white;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.place-card {
    padding: 28px;
    background: #f8f8f5;
    border-radius: 12px;
    transition: transform 0.3s;
}

.place-card:hover {
    transform: translateY(-3px);
}

.place-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

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

.driving-routes {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background: #f8f8f5;
    border-radius: 12px;
}

.driving-routes h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.driving-routes ol {
    list-style: none;
    counter-reset: route-counter;
    padding: 0;
}

.driving-routes ol li {
    counter-increment: route-counter;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    color: #555;
}

.driving-routes ol li::before {
    content: counter(route-counter);
    position: absolute;
    left: 0;
    width: 26px;
    height: 26px;
    background: #1B4D5C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* No Deposit Section */
.no-deposit {
    padding: 80px 0;
    background: #f8f8f5;
}

.no-deposit-content > p {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
}

.deposit-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.deposit-card {
    padding: 28px;
    background: white;
    border-radius: 12px;
    border-top: 4px solid #C28135;
}

.deposit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

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

.deposit-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
}

/* Documents Section */
.documents {
    padding: 80px 0;
    background: white;
}

.doc-content > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 17px;
}

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

.doc-card {
    padding: 28px;
    background: #f8f8f5;
    border-radius: 12px;
}

.doc-card h3 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #333;
}

.doc-card ul {
    list-style: none;
    padding: 0;
}

.doc-card ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

.doc-card ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f8f5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 50px;
    color: #C28135;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-rating {
    color: #f39c12;
    margin-bottom: 10px;
    font-size: 18px;
}

.testimonial-text {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Review Form */
.review-form-section {
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 35px;
    border-radius: 12px;
}

.review-form-section h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.review-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.review-form input,
.review-form select,
.review-form textarea {
    flex: 1;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

.review-form textarea {
    width: 100%;
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #C28135 0%, #A66D2C 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #f8f8f5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 22px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0eb;
}

.faq-toggle {
    font-size: 22px;
    color: #C28135;
}

.faq-answer {
    padding: 0 25px 22px;
    color: #666;
    line-height: 1.7;
}

/* Useful Info Section */
.useful-info {
    padding: 80px 0;
    background: #f8f8f5;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.info-card {
    padding: 28px;
    background: white;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

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

/* Complete Guide Section */
.complete-guide {
    padding: 80px 0;
    background: white;
}

.guide-section {
    max-width: 900px;
    margin: 0 auto 40px;
}

.guide-section h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #333;
}

.guide-section p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B4D5C 0%, #154552 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.final-cta .cta-button {
    background: linear-gradient(135deg, #C28135 0%, #A66D2C 100%);
}

/* Footer Styles */
footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #C28135;
}

.footer-section p,
.footer-section ul {
    color: #a0a0a0;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #C28135;
}

.payment-methods {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.payment-methods h4 {
    color: #a0a0a0;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 45px;
    height: 28px;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #a0a0a0;
}

.footer-bottom .disclaimer {
    font-size: 13px;
    margin-top: 10px;
    opacity: 0.8;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
}

.legal-links a:hover {
    color: #C28135;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .features-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .feature-item {
        font-size: 15px;
    }
    
    .pricing-table {
        overflow-x: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .review-form .form-row {
        flex-direction: column;
    }

    .legal-links {
        flex-direction: column;
        gap: 12px;
    }

    .location-cards {
        flex-direction: column;
        align-items: center;
    }

    .location-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 26px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 17px;
    }

    .container {
        padding: 0 15px;
    }
}
