/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    color: #949494;
    text-decoration: none;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header-top {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.header-top ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.header-top-left ul {
    justify-content: flex-start;
}

.header-top-right ul {
    justify-content: flex-end;
}

.header-top li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-top i {
    color: #e81301;
}

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

.site-branding img {
    max-height: 50px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #1e3a5f;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.current-menu-item a {
    color: #e81301;
}

.header-main-right-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e81301;
    font-weight: bold;
    font-size: 18px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}

.menu-toggle .line {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Banner Section */
.home-banner {
    background: #1e3a5f;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50% 0 0 50%;
    transform: translateX(50%);
}

.home-banner-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.home-banner-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #e81301;
}

.home-banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.home-banner-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-banner-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    border-radius: 10px;
}

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

.btn-primary {
    background: #e81301;
    color: #fff;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: #fff;
}

/* About Section */
.home-about {
    padding: 100px 0;
    background: #f8f9fa;
}

.home-about-content h4 {
    color: #e81301;
    font-size: 18px;
    margin-bottom: 10px;
}

.home-about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

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

.home-about-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.home-about-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.home-about-content li i {
    color: #e81301;
    font-size: 18px;
}

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

/* Services Section */
.home-services {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h4 {
    color: #e81301;
    font-size: 18px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: #f8f9fa;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: #fff;
}

.service-item-icon {
    width: 80px;
    height: 80px;
    background: #e81301;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
    background: #667eea;
}

.service-item-icon i {
    font-size: 32px;
    color: #fff;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

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

.testimonial-item {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.testimonial-item-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-item-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-item-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-item-author h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-item-author span {
    color: #666;
    font-size: 14px;
}

/* Contact Section */
.home-contact {
    padding: 100px 0;
    background: #fff;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #e81301;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-control::placeholder {
    color: #999;
}

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

.contact-info {
    padding: 40px 0;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-info i {
    color: #e81301;
    font-size: 20px;
    width: 20px;
}

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

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e81301;
}

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

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: #e81301;
}

.footer-widget p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    background: #111;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
}

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

    .menu-toggle {
        display: flex;
    }

    .main-navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .main-navigation ul.show {
        display: flex;
    }

    .home-banner {
        padding: 60px 0;
        text-align: center;
    }

    .home-banner-content h2 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .home-about-content h2 {
        font-size: 28px;
    }

    .contact-form {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .home-banner-content h2 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .home-about-content h2 {
        font-size: 24px;
    }

    .service-item {
        padding: 30px 15px;
    }

    .testimonial-item {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-banner-content,
.home-about-content,
.service-item,
.testimonial-item {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999999;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}
