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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.nav-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;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
}

.nav-contact {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-weight: 500;
}

.nav-contact i {
    color: #667eea;
}

.contact-nav-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 80px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #2d3748;
}

.benefit i {
    color: #48bb78;
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.hero-car-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: #f7fafc;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

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

.step h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

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

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.benefits-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 40px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 5px;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
}

.benefits-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Important Info Section */
.important-info {
    padding: 60px 0;
    background: #f0f9f5;
}

.info-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.info-box:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.info-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.info-box i {
    color: #38a169;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    padding: 15px;
    background: #f7fafc;
    border-radius: 8px;
    line-height: 1.6;
}

.info-item strong {
    color: #2d3748;
}

/* Trust & Reputation Section */
.trust-section {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 80px 0;
}

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

.trust-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.trust-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.trust-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rogers-logo {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-img {
    max-width: 140px;
    height: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-sub {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
    display: block;
}

.badge span {
    font-weight: 600;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

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

.testimonial {
    background: #f7fafc;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.3;
}

.stars {
    color: #fbb041;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
}

/* Contact Form Section */
.contact-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.form-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.form-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.privacy-notice input[type="checkbox"] {
    margin-top: 4px;
}

.privacy-notice label {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-info p {
    color: #a0aec0;
    margin: 20px 0;
    line-height: 1.6;
}

.footer .logo {
    background: #fefefe;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.footer .logo.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer .logo-img {
    height: 40px;
    width: auto;
}

.omvic-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #48bb78;
    font-weight: 600;
}

.footer-contact h4,
.footer-hours h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.contact-item,
.hours-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #a0aec0;
}

.contact-item i {
    color: #667eea;
    width: 16px;
}

.hours-item {
    justify-content: space-between;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    text-align: center;
    color: #a0aec0;
}

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        margin-top: 100px; /* Increased margin for tablet */
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
    }
    
    .logo-img {
        height: 40px;
        object-fit: contain;
        object-position: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        padding: 40px 25px;
        margin: 0 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero {
        margin-top: 120px; /* Increased margin for mobile */
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        padding: 30px 15px;
        margin: 0 5px;
        width: calc(100% - 10px);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
    
    .how-it-works,
    .benefits,
    .testimonials,
    .contact-form {
        padding: 60px 0;
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .trust-text h2 {
        font-size: 2rem;
    }

    .trust-text p {
        font-size: 1.1rem;
    }

    .trust-stats {
        justify-content: center;
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .trust-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .rogers-logo {
        width: 100%;
        margin-bottom: 20px;
        padding: 20px;
    }

    .logo-img {
        max-width: 120px;
    }

    .logo-sub {
        font-size: 0.8rem;
    }

    .badge {
        flex: 1;
        min-width: 120px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for form submission */
.submit-button.loading {
    opacity: 0.7;
    pointer-events: none;
}

.submit-button.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.thank-you-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: #48bb78;
    margin-bottom: 30px;
    animation: successPulse 2s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-content .lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.next-steps h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 40px;
}

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

.step {
    text-align: left;
    padding: 20px;
    border-radius: 15px;
    background: #f8fafc;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.step:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 10px;
}

.step p {
    color: #4a5568;
    line-height: 1.5;
}

.contact-options {
    margin-bottom: 50px;
}

.contact-options h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 30px;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-card span {
    color: #4a5568;
    font-size: 0.9rem;
}

.social-proof {
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #48bb78;
    font-weight: 600;
}

.indicator i {
    font-size: 1.2rem;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Mobile Responsive for Thank You Page */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 140px 0 60px;
    }
    
    .thank-you-content h1 {
        font-size: 2.2rem;
    }
    
    .thank-you-content .lead {
        font-size: 1.1rem;
    }
    
    .next-steps {
        padding: 30px 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Address Link Styles */
.address-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.address-link:hover {
    color: #2E7D32;
    transform: translateY(-2px);
}

.address-link p,
.address-link span {
    margin: 0;
    transition: color 0.3s ease;
}

.location {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location:hover {
    color: #2E7D32;
}

.location i {
    margin-right: 5px;
}

/* Contact Link Styles */
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #2E7D32;
}

.contact-link p {
    margin: 0;
    transition: color 0.3s ease;
}

/* Phone link styles */
.phone {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone:hover {
    color: #2E7D32;
}

/* Footer contact item links */
.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2E7D32;
}
