/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #2c3e50;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:hover {
    text-decoration: none;
    color: inherit;
}

.nav-logo a h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-logo a:hover h2 {
    color: #3498db;
}

.nav-logo i {
    color: #3498db;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 150px 0 100px;
    margin-top: 70px;
    min-height: 70vh;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Quote Form Container */
.quote-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
    width: 100%;
    max-width: 480px;
    box-sizing: border-box;
}

.quote-form-container h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.hero-quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.hero-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.hero-quote-form input,
.hero-quote-form select {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.hero-quote-form input::placeholder {
    color: #999;
}

.hero-quote-form input:focus,
.hero-quote-form select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.hero-quote-form select {
    color: #666;
}

.hero-quote-form select option:first-child {
    color: #999;
}

.submit-button {
    background: #007bff;
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    letter-spacing: 1px;
    width: 100%;
    box-sizing: border-box;
}

.submit-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #3498db;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Quote Section - Removed since form is now in hero */

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #555;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 70px;
    min-height: 50vh;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content-section {
    padding: 80px 0;
    background: white;
}

.about-main-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.about-main-content h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.about-main-content h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    font-weight: 600;
}

.about-main-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.about-feature {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
}

.about-feature i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.about-feature h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.about-feature p {
    margin-bottom: 0;
    font-size: 1rem;
}

.awards-list,
.promise-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.awards-list li,
.promise-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #555;
}

.cta-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-section .cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-section .cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Active navigation link */
.nav-link.active {
    color: #3498db;
}

/* How It Works Page Styles */
.hiw-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 70px;
    min-height: 50vh;
}

.hiw-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hiw-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: white;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 100px 100px 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: #3498db;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.step-icon {
    color: #2c3e50;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.step-details li {
    color: #666;
    padding: 0.5rem 0;
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
}

.step-details li:before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.step-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.step-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.step-timeline {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 4px solid #3498db;
}

.timeline-item {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #666;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item strong {
    color: #2c3e50;
}

.delivery-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.delivery-item:last-child {
    margin-bottom: 0;
}

.delivery-item i {
    color: #3498db;
    font-size: 1.5rem;
    width: 30px;
}

.delivery-item div strong {
    display: block;
    color: #2c3e50;
    font-size: 1rem;
}

.delivery-item div span {
    color: #666;
    font-size: 0.9rem;
}

.step-arrow {
    text-align: center;
    margin: 2rem 0;
}

.step-arrow i {
    color: #3498db;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Process Details Section */
.process-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
}

.process-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-item h3 i {
    color: #3498db;
    margin-right: 10px;
}

.process-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* How It Works CTA Section */
.hiw-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.hiw-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hiw-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hiw-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button.primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 70px;
    min-height: 50vh;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Methods Section */
.contact-methods {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-method-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.contact-method h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-method p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-detail {
    margin-bottom: 1rem;
}

.contact-detail strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-detail span {
    color: #666;
    font-size: 0.9rem;
}

.contact-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.service-highlights {
    margin-top: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    justify-content: center;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    color: #27ae60;
    font-size: 0.9rem;
    width: 16px;
}

.highlight-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Quote Section */
.contact-quote-section {
    padding: 80px 0;
    background: white;
}

.contact-quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-quote-intro h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-quote-intro h2 i {
    color: #3498db;
    margin-right: 10px;
}

.contact-quote-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quote-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quote-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.quote-benefit:hover {
    background: #e9ecef;
}

.quote-benefit i {
    color: #3498db;
    font-size: 1.2rem;
    width: 20px;
}

.quote-benefit span {
    color: #2c3e50;
    font-weight: 600;
}

.contact-quote-form-wrapper {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

.contact-quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-quote-form input,
.contact-quote-form select,
.contact-quote-form textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

.contact-quote-form input:focus,
.contact-quote-form select:focus,
.contact-quote-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-quote-form textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-submit-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

/* Why Choose Us Section */
.contact-why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.why-choose-item h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials Section */
.contact-testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 2rem;
}

.stars {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.3rem;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-cta-buttons .cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-cta-buttons .cta-button.primary {
    background: #e74c3c;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.contact-cta-buttons .cta-button.primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.contact-cta-buttons .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-cta-buttons .cta-button.secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Enhanced Footer */
.footer-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bdc3c7;
    font-size: 0.85rem;
}

.badge i {
    color: #3498db;
}

/* Home Page Additional Sections */

/* Stats Section */
.home-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Transport Options Section */
.transport-options {
    padding: 80px 0;
    background: white;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.transport-option {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.transport-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.transport-option.featured {
    background: linear-gradient(135deg, #667eea 10%, #764ba2 100%);
    color: white;
    border: 3px solid #3498db;
}

.transport-option.featured .transport-content h3,
.transport-option.featured .transport-features li,
.transport-option.featured .transport-content p {
    color: white;
}

.transport-image {
    text-align: center;
    margin-bottom: 2rem;
}

.transport-image i {
    font-size: 4rem;
    color: #3498db;
    background: white;
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.2);
}

.transport-option.featured .transport-image i {
    color: #667eea;
}

.transport-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-badge {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-badge.premium {
    background: #e74c3c;
}

.transport-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.transport-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.transport-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.transport-features i {
    color: #27ae60;
    font-size: 0.9rem;
    width: 16px;
}

.transport-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #e74c3c;
}

.transport-option.featured .transport-price {
    color: #667eea;
    border-color: white;
}

/* Home Testimonials */
.home-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.home-testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.home-testimonials .testimonial {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.home-testimonials .testimonial:hover {
    transform: translateY(-5px);
}

.home-testimonials .testimonial-content {
    padding: 2rem;
}

.home-testimonials .stars {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.home-testimonials .testimonial-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.home-testimonials .testimonial-author strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.home-testimonials .testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.3rem;
}

/* Home Page Process Preview Section */
.process-preview {
    padding: 80px 0;
    background: white;
}

.process-preview .process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.process-preview .process-step {
    text-align: center;
    max-width: 200px;
}

.process-preview .step-icon {
    position: relative;
    margin-bottom: 1rem;
}

.process-preview .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e74c3c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
}

.process-preview .step-icon i {
    font-size: 3rem;
    color: #3498db;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.process-preview .process-step h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-preview .process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.process-preview .process-arrow {
    color: #3498db;
    font-size: 1.5rem;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

.process-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.process-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Why Choose CME Section */
.home-why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.why-choose-item h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Home Page Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }    .quote-form-container {
        order: -1;
        max-width: 380px;
        margin: 0 auto;
        padding: 1.5rem;
        width: calc(100% - 30px);
    }

    .hero-quote-form .form-row {
        grid-template-columns: 1fr;
    }    .section-title {
        font-size: 2rem;
    }

    /* How It Works Mobile Styles */
    .step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .step-icon {
        font-size: 2.5rem;
        margin: 0 auto;
    }

    .step-content {
        text-align: left;
    }

    .step-content h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .step-button {
        display: block;
        text-align: center;
        max-width: 200px;
        margin: 1rem auto 0;
    }

    .step-arrow {
        margin: 1rem 0;
    }

    .step-arrow i {
        font-size: 1.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hiw-cta-content h2 {
        font-size: 2rem;
    }

    .hiw-cta-content p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hiw-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }    .quote-form-container {
        padding: 1.5rem;
        margin: 0 10px;
        width: calc(100% - 20px);
        max-width: 360px;
    }

    .quote-form-container h2 {
        font-size: 1.2rem;
    }    .hero-quote-form input,
    .hero-quote-form select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .about-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .about-main-content h2 {
        font-size: 1.8rem;
    }
    
    .about-main-content h3 {
        font-size: 1.3rem;
    }
    
    .about-feature {
        padding: 1.5rem;
    }
    
    .hiw-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hiw-hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hiw-hero {
        padding: 120px 0 80px;
        min-height: 40vh;
    }
    
    .step {
        padding: 1rem;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-icon {
        font-size: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .process-item {
        padding: 1.5rem;
    }
      .faq-item {
        padding: 1.5rem;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .delivery-info,
    .step-timeline {
        padding: 1rem;
        margin-top: 1rem;
    }

    .timeline-item,
    .delivery-item {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .step-details li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .transport-option {
        padding: 1.5rem;
    }
    
    .transport-content h3 {
        font-size: 1.5rem;
    }
    
    .process-step {
        max-width: 250px;
    }
    
    .why-choose-item {
        padding: 1.5rem;
    }
}
