@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --tarracogo-orange: #00FF00; 
    --tarracogo-dark: #1E1E1E;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #777;
    --text-color: #333;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Top Banner */
.top-banner {
    background-color: var(--tarracogo-orange);
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
}

/* Header */
header {
    background-color: var(--tarracogo-dark);
    color: white;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.header-links {
    display: flex;
    gap: 20px;
}

.header-links a {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.call-cta {
    background-color: var(--tarracogo-orange);
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    color: black;
}

.header-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 936px;
    background-color: var(--tarracogo-dark);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px;
    padding-bottom: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    z-index: 1;
}

.booking-form-container {
    max-width: 1560px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    color: var(--text-color);
    overflow: hidden;
    margin-bottom: 25px;
    margin-top: 0;
}

.booking-form {
    padding: 17px;
    background-color: rgba(255, 255, 255, 0.2);
}

.booking-tabs {
    display: flex;
    border-bottom: 1px solid var(--medium-gray);
    background-color: rgba(255, 255, 255, 0.7);
}

.tab {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

.tab.active {
    border-bottom: 3px solid var(--tarracogo-orange);
    color: var(--tarracogo-orange);
}

.location-fields,
.date-fields {
    display: flex;
    gap: 20px;
    margin-bottom: 17px;
}

.location-fields > div,
.date-fields > div {
    flex: 1;
}

.pickup-location,
.return-location,
.pickup-date,
.return-date {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input,
.date-input input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
}

.input-with-icon i,
.date-input i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
}

.date-input {
    position: relative;
    display: flex;
}

.date-input input:first-of-type {
    flex: 3;
}

.date-input input:last-of-type {
    flex: 1;
    border-left: none;
}

.search-button {
    display: block;
    width: 200px;
    margin-left: auto;
    background-color: var(--tarracogo-orange);
    color: black;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: darken(var(--tarracogo-orange), 10%);
}

.call-now-banner {
    margin-top: 15px;
    background-color: #e8f4ff;
    border-left: 4px solid #4285f4;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-now-banner i {
    color: #4285f4;
    font-size: 20px;
}

.call-now-banner a {
    color: var(--tarracogo-orange);
    font-weight: 600;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: white;
    border: 1px solid var(--medium-gray);
    border-radius: 3px;
    position: relative;
}

.checkbox-container input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    background-color: var(--tarracogo-orange);
    border-radius: 1px;
}

.corporate-rate {
    margin-top: 15px;
}

.promotion-banner {
    margin-top: 20px;
    background-color: #FFF8E1;
    border-left: 4px solid var(--tarracogo-orange);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.promotion-banner i {
    color: var(--tarracogo-orange);
    font-size: 20px;
}

/* Hero Slogan */
.hero-slogan {
    position: relative;
    z-index: 2;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: auto;
    padding-bottom: 50px;
}

.hero-slogan h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.hero-slogan h1 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 10px;
    max-width: 600px;
}

.hero-call-cta {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    max-width: 400px;
}

.hero-call-cta h3 {
    margin-bottom: 15px;
}

.phone-button {
    background-color: var(--tarracogo-orange);
    color: black;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Benefits Section */
.benefits-section {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.benefit {
    flex: 1;
    max-width: 300px;
    padding: 20px;
}

.benefit i {
    font-size: 36px;
    color: var(--tarracogo-orange);
    margin-bottom: 15px;
}

.benefit h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Offers Section */
.offers-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.offer-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    color: white;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.offer-card.large {
    height: 300px;
    margin-bottom: 20px;
}

.offer-row {
    display: flex;
    gap: 20px;
}

.offer-card.medium {
    height: 250px;
    flex: 1;
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--tarracogo-dark);
    padding: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.percentage {
    font-size: 24px;
    font-weight: 700;
}

.text, .unit {
    font-size: 12px;
    font-weight: 600;
}

.price {
    font-size: 24px;
    font-weight: 700;
}

.offer-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.offer-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.offer-content p {
    margin-bottom: 15px;
}

.button {
    display: inline-block;
    background-color: white;
    color: var(--tarracogo-dark);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: var(--light-gray);
}

.call-button {
    display: block;
    margin-top: 10px;
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.call-button:hover {
    background-color: #45a049;
}

/* More Products Section */
.more-products {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.more-products > h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.product h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product p {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.product a {
    color: var(--tarracogo-orange);
    font-weight: 600;
    font-size: 14px;
}

.product a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-gray);
    padding: 40px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 500px;
    text-align: left;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial cite {
    display: block;
    font-weight: 600;
    font-style: normal;
    color: var(--dark-gray);
}

.call-action-strip {
    background-color: var(--tarracogo-orange);
    color: black;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.floating-call-button {
    background-color: white;
    color: var(--tarracogo-orange);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-section > p {
    max-width: 800px;
    margin-bottom: 30px;
}

.information-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.column {
    flex: 1;
    min-width: 200px;
}

.column h3, .column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.column ul {
    margin-bottom: 20px;
}

.column li {
    margin-bottom: 8px;
}

.column a {
    color: var(--tarracogo-dark);
}

.column a:hover {
    color: var(--tarracogo-orange);
}

/* Call to Action Section */
.call-to-action-section {
    background-color: var(--tarracogo-dark);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 30px;
}

.primary-call-button {
    background-color: var(--tarracogo-orange);
    color: black;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, background-color 0.3s;
}

.primary-call-button:hover {
    transform: scale(1.05);
    background-color: #ff7d26;
}

/* Footer */
footer {
    background-color: var(--tarracogo-dark);
    color: white;
    padding: 20px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links a {
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-call-link {
    background-color: var(--tarracogo-orange);
    padding: 8px 15px;
    border-radius: 4px;
    margin-left: 10px;
    color: black;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--medium-gray);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 650px;
    position: relative;
    animation: slideIn 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: var(--dark-gray);
}

.close-modal:hover {
    color: var(--tarracogo-orange);
}

.company-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--medium-gray);
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid var(--medium-gray);
    padding-top: 15px;
}

.company-info p {
    margin-bottom: 8px;
}

.company-info a {
    color: var(--tarracogo-orange);
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideIn {
    from {transform: translateY(-20px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-fields, 
    .date-fields {
        flex-direction: column;
    }
    
    .offer-row {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        height: 1092px;
        padding-top: 30px;
    }
    
    .hero-slogan h2 {
        font-size: 28px;
    }
    
    .hero-slogan h1 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .header-links {
        display: none;
    }
    
    .hero-section {
        height: 1248px;
        padding-top: 20px;
    }
}