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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h2 {
    color: #ff6b35;
    margin: 0;
    font-size: 1.5rem;
}

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

.phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    position: relative;
    width: 35px;
    height: 35px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 2rem 1rem;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    animation: slideDown 0.3s ease-out;
}

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.highlight {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.feature i {
    color: #ffd700;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.truck-animation {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Process Section */
.process {
    padding: 1.5rem 0;
    background: #f8fafc;
}

@media (min-width: 1200px) {
    .process {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 0.8rem 0;
    }
}

.steps {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

@media (min-width: 1200px) {
    .steps {
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.step {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    flex: 1;
}

.step:hover {
    transform: translateY(-2px);
}

@media (min-width: 1200px) {
    .step {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
    
    .step:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

@media (min-width: 1200px) {
    .step h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.step p {
    font-size: 0.8rem;
    margin: 0;
}

@media (min-width: 1200px) {
    .step p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.step-icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

@media (min-width: 1200px) {
    .step-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
    }
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #667eea;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

@media (min-width: 1200px) {
    .step-number {
        width: 30px;
        height: 30px;
        top: -10px;
        right: -10px;
        font-size: 1rem;
    }
}

/* Calculator Section */
.calculator {
    padding: 5rem 0;
    background: white;
}

.calculator-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group select,
.form-group input[type="range"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group input[type="range"]:focus {
    outline: none;
    border-color: #ff6b35;
}

input[type="range"] {
    -webkit-appearance: none;
    height: 8px;
    background: linear-gradient(to right, #ff6b35 0%, #e2e8f0 0%);
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #ff6b35;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

#distanceValue {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #ff6b35;
}

.price-result {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-breakdown {
    margin-bottom: 1.5rem;
}

.price-breakdown div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

.price-breakdown .total {
    border-top: 2px solid #e2e8f0;
    font-weight: 600;
    font-size: 1.2rem;
    color: #ff6b35;
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Advanced Calculator Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vehicle-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.vehicle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.vehicle-btn:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.vehicle-btn.active {
    border-color: #ff6b35;
    background: #fff5f0;
}

.vehicle-btn i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.vehicle-btn span {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.vehicle-btn small {
    color: #666;
    font-size: 0.8rem;
}

.button-group {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.option-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 60px;
}

.option-btn:hover {
    border-color: #ff6b35;
}

.option-btn.active {
    border-color: #ff6b35;
    background: #ff6b35;
    color: white;
}

.complexity,
.night-price,
.express-price {
    color: #ff6b35;
    font-weight: 600;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: #ff6b35;
}

/* Checkbox styles */
.form-group label input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
    accent-color: #ff6b35;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-group label:has(input[type="checkbox"]):hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

/* Advantages Section */
.advantages {
    padding: 1.5rem 0;
    background: #f8fafc;
}

@media (min-width: 1200px) {
    .advantages {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .advantages {
        padding: 0.8rem 0;
    }
}

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

@media (min-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.advantage {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.advantage:hover {
    transform: translateY(-2px);
}

@media (min-width: 1200px) {
    .advantage {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
    
    .advantage:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

.advantage-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

@media (min-width: 1200px) {
    .advantage-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
    }
}

.advantage h3 {
    color: #333;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

@media (min-width: 1200px) {
    .advantage h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.advantage p {
    color: #666;
    line-height: 1.4;
    font-size: 0.8rem;
}

@media (min-width: 1200px) {
    .advantage p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Reviews Section */
.reviews {
    padding: 1.5rem 0;
    background: white;
}

@media (min-width: 1200px) {
    .reviews {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 0.8rem 0;
    }
}

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

@media (min-width: 1200px) {
    .reviews-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.review {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    border-left: 3px solid #ff6b35;
}

@media (min-width: 1200px) {
    .review {
        padding: 2rem;
        border-radius: 16px;
        border-left: 4px solid #ff6b35;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .review:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

@media (min-width: 1200px) {
    .review-header {
        gap: 1rem;
        margin-bottom: 1.2rem;
    }
}

.review-avatar {
    width: 35px;
    height: 35px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (min-width: 1200px) {
    .review-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.review-info h4 {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
}

@media (min-width: 1200px) {
    .review-info h4 {
        font-size: 1.1rem;
    }
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

@media (min-width: 1200px) {
    .stars {
        font-size: 1.1rem;
    }
}

.review p {
    color: #666;
    line-height: 1.4;
    font-style: italic;
    font-size: 0.8rem;
}

@media (min-width: 1200px) {
    .review p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Fleet Section */
.fleet {
    padding: 1.5rem 0;
    background: #f8fafc;
}

@media (min-width: 1200px) {
    .fleet {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .fleet {
        padding: 0.8rem 0;
    }
}

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

@media (min-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.fleet-item {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.fleet-item:hover {
    transform: translateY(-2px);
}

@media (min-width: 1200px) {
    .fleet-item {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }
    
    .fleet-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

.fleet-item h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

@media (min-width: 1200px) {
    .fleet-item h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.fleet-item p {
    font-size: 0.8rem;
    line-height: 1.4;
}

@media (min-width: 1200px) {
    .fleet-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.fleet-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

@media (min-width: 1200px) {
    .fleet-image {
        width: 100px;
        height: 100px;
        margin: 0 auto 1.5rem;
        border-radius: 16px;
        font-size: 3rem;
    }
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

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

.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: #f8fafc;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.faq-question.active {
    background: #ff6b35;
    color: white;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    background: white;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

/* Coverage Section */
.coverage {
    padding: 5rem 0;
    background: #f8fafc;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.coverage-info ul {
    list-style: none;
}

.coverage-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.coverage-info li i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-time {
    color: #ffd700;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-buttons-bottom {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

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

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

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

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

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

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

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ff6b35;
}

.modal-content h3 {
    margin-bottom: 1rem;
    color: #333;
}

.modal-content form {
    margin: 2rem 0;
}

.modal-content input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
}

.modal-content input:focus {
    outline: none;
    border-color: #ff6b35;
}

.callback-timer-container {
    margin-top: 2rem;
}

.callback-timer-idle {
    text-align: center;
}

.timer-slider {
    position: relative;
    margin-bottom: 1rem;
}

.timer-slider-track {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.timer-slider-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.timer-text {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.callback-timer-active {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.callback-success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #22c55e;
    font-weight: 600;
}

.callback-success-message i {
    font-size: 1.2rem;
}

.callback-countdown-display {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    animation: pulse 1s infinite;
}

.callback-timer-finished {
    text-align: center;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 12px;
    border: 1px solid #fbbf24;
    animation: fadeIn 0.5s ease;
}

.callback-queue-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #92400e;
    font-weight: 500;
    line-height: 1.5;
}

.callback-queue-message i {
    font-size: 1.2rem;
    color: #f59e0b;
}

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

/* Sticky Buttons */
.sticky-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1500;
}

.sticky-call-btn a {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    animation: bounce 2s infinite;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1500;
}

.whatsapp-btn a {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        justify-content: center;
    }

    .truck-animation {
        font-size: 4rem;
    }

    .steps {
        flex-direction: row;
        gap: 0.5rem;
    }

    .step {
        padding: 0.5rem;
    }

    .step-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 0.4rem;
        font-size: 1rem;
    }

    .step-number {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        top: -6px;
        right: -6px;
    }

    .step h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .step p {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .advantage {
        padding: 0.5rem;
    }

    .advantage-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto 0.4rem;
        font-size: 1rem;
    }

    .advantage h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .advantage p {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .review {
        padding: 0.8rem;
    }

    .review-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .review-info h4 {
        font-size: 0.8rem;
    }

    .review p {
        font-size: 0.75rem;
    }

    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .fleet-item {
        padding: 0.5rem;
    }

    .fleet-image {
        width: 45px;
        height: 45px;
        margin: 0 auto 0.5rem;
        font-size: 1.4rem;
    }

    .fleet-item h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .fleet-item p {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .coverage-content {
        grid-template-columns: 1fr;
    }

    .final-cta .cta-content h2 {
        font-size: 2rem;
    }

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

    .sticky-call-btn,
    .whatsapp-btn {
        bottom: 10px;
    }

    .sticky-call-btn {
        right: 10px;
    }

    .whatsapp-btn {
        left: 10px;
    }

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

    .nav-menu {
        display: none;
    }

    .nav-menu.mobile-active {
        display: flex;
        position: fixed;
    }

    .phone-btn {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
    }

    .header-contact {
        gap: 0.5rem;
    }

    .phone-btn i {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

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

    .calculator-form {
        padding: 2rem 1rem;
    }

    .vehicle-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .vehicle-btn {
        padding: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .button-group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .option-btn {
        flex: 1;
        min-width: 80px;
    }

    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
    }
} 