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

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 80px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.utts-badge {
    display: flex;
    align-items: center;
}

.utts-badge img {
    height: 70px;
    width: auto;
}

.utts-service {
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #ccc;
    font-weight: 300;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #e0e0e0;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: #1a365d;
    color: #fff;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.6);
}

/* UTTS Section */
.utts-section {
    padding: 80px 0;
    background-color: #fff;
}

.utts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.utts-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.utts-logo-text {
    margin-bottom: 20px;
}

.utts-logo-subtitle {
    font-size: 16px;
    color: #999;
    font-weight: 300;
}

.utts-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
}

.utts-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Deadline Section */
.deadline-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: #fff;
}

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

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

.deadline-icon img {
    height: 60px;
    width: auto;
}

.deadline-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.deadline-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Covered Section */
.covered-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.covered-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 50px;
}

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

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

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

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

.card-icon img {
    height: 70px;
    width: auto;
}

.covered-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.covered-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Mobile Installation Section */
.mobile-installation {
    padding: 80px 0;
    background-color: #fff;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
}

.mobile-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.mobile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Process Steps Section */
.process-steps-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-steps-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 50px;
}

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

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

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

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.step p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 50px;
}

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

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

.faq-question {
    padding: 20px;
    cursor: pointer;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
}

.faq-answer {
    padding: 20px;
    background: #f8f9fa;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Rental Banner Section */
.rental-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rental-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.rental-banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rental-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.rental-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rental Section */
.rental-section {
    padding: 80px 0;
    background-color: #fff;
}

.rental-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rental-logo-text {
    margin-bottom: 20px;
}

.rental-logo-subtitle {
    font-size: 16px;
    color: #999;
    font-weight: 300;
}

.rental-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.rental-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 20px;
}

.rental-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.rental-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Service Banners */
.service-banners {
    display: flex;
    flex-direction: column;
}

.service-banner {
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

.service-banner.insurance {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
}

.service-banner.chauffeur {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.service-banner h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
}

.contact-section p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.map-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-subtitle {
    font-size: 14px;
    color: #ccc;
    font-weight: 300;
}

.footer-logo-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: -5px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-social h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

.footer-bottom {
    border-top: 1px solid #2d5a87;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 5px;
}

/* Floating WhatsApp Button */
.floating-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-wpp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-wpp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    animation: ripple 2s infinite;
    z-index: -1;
}

.floating-wpp i {
    color: #fff;
    font-size: 30px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 30px;
    text-align: center;
}

/* Application Section Styles */
.application-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.application-content {
    max-width: 600px;
    margin: 0 auto;
}

.application-header {
    text-align: center;
    margin-bottom: 50px;
}

.application-logo-subtitle {
    font-size: 16px;
    color: #999;
    font-weight: 300;
    margin-bottom: 10px;
}

.application-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
    line-height: 1.3;
}

.application-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.application-form .form-group {
    margin-bottom: 25px;
}

.application-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a365d;
    font-size: 14px;
}

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.application-form select {
    cursor: pointer;
}

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

.application-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

/* Active Navigation Link */
.nav-link.active {
    color: #ff6b35;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff6b35;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-logo-text {
    margin-bottom: 20px;
}

.about-logo-subtitle {
    font-size: 16px;
    color: #999;
    font-weight: 300;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

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

/* Vision Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card,
.mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
}

.vision-card p,
.mission-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #fff;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 50px;
}

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

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.review-quote {
    font-size: 4rem;
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.3;
}

.review-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    padding-top: 20px;
}

.review-author h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin: 0;
}

/* Contact Banner Section */
.contact-banner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: #fff;
    text-align: center;
}

.contact-banner-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 50px;
}

.contact-info-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 24px;
    color: #fff;
}

.contact-info-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
}

.contact-info-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
}

.contact-form-section p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #fff;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Rental Service Section */
.rental-service-section {
    padding: 80px 0;
    background-color: #fff;
}

.rental-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rental-service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rental-service-logo {
    margin-bottom: 20px;
}

.rental-service-subtitle {
    font-size: 16px;
    color: #999;
    font-weight: 300;
}

.rental-service-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
}

.rental-service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Contact Car Section */
.contact-car-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-car-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-car-logo {
    margin-bottom: 30px;
}

.contact-car-subtitle {
    font-size: 16px;
    color: #999;
    font-weight: 300;
}

.contact-car-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-car-phones {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.phone-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.phone-item span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
}

.contact-car-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .hero-content h2 {
        font-size: 1.2rem;
    }

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

    .utts-content,
    .mobile-content,
    .rental-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .covered-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-banners {
        flex-direction: column;
    }

    .rental-banner-content h2 {
        font-size: 2rem;
    }

    .about-content,
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

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

    .rental-service-content,
    .contact-car-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-car-phones {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .utts-text h2,
    .mobile-text h2,
    .rental-text h2,
    .covered-section h2,
    .process-steps-section h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
}