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

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.text-center {
    text-align: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #e12e2e;
    color: white;
    border: none;
}

.btn.primary:hover {
    background-color: #c62020;
}

.btn.secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.btn.secondary:hover {
    background-color: #e9e9e9;
}

.btn.outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Section Styles */
.section-title {
    font-size: 28px;
    margin-bottom: 25px;
    position: relative;
    text-align: center;
    color: #333;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #e12e2e;
    margin: 15px auto 0;
}

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

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

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #555;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 0;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e12e2e;
    transition: width 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.main-nav a.active {
    color: #e12e2e;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.slide-overlay h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
}

/* Company Info */
.company-info {
    padding: 60px 0;
}

.company-info p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

/* Service Gallery */
.service-gallery {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* About Service */
.about-service {
    padding: 60px 0;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.service-text h2:after {
    margin-left: 0;
}

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

.service-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-image {
    flex: 1;
    max-width: 400px;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Service Info */
.service-info {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.info-columns {
    display: flex;
    gap: 30px;
}

.info-column {
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e12e2e;
}

.info-column p {
    margin-bottom: 15px;
}

.info-column ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-column ul li i {
    color: #e12e2e;
    margin-top: 5px;
}

/* Services List */
.services-list {
    padding: 60px 0;
}

.service-list-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-image-col {
    flex: 1;
}

.service-image-col img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-details-col {
    flex: 1;
}

.service-details-col h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-details-col p {
    margin-bottom: 20px;
}

.services-checklist li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-checklist li i {
    color: #e12e2e;
}

/* Featured Sections */
.featured-sections {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.featured-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-inner {
    padding: 30px;
    color: white;
    text-align: center;
    height: 100%;
}

.featured-inner.orange {
    background-color: #ff7f27;
}

.featured-inner.purple {
    background-color: #9966cc;
}

.featured-inner.blue {
    background-color: #3498db;
}

.featured-inner h3 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-inner img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid white;
}

.featured-inner p {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Footer */
footer {
    background-color: #222;
    color: #aaa;
}

.footer-main {
    padding: 60px 0 30px;
}

.footer-widgets {
    display: flex;
    gap: 40px;
}

.footer-widget {
    flex: 1;
}

.footer-widget h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e12e2e;
}

.footer-widget p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 14px;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.contact-info li i {
    color: #e12e2e;
    margin-top: 5px;
}

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #e12e2e;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #c62020;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thank-you-icon {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.thank-you-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.thank-you-content > p {
    font-size: 18px;
    margin-bottom: 30px;
}

.request-details {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.request-details h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.details-row {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.details-label {
    font-weight: 600;
    margin-right: 10px;
}

.details-value {
    color: #e12e2e;
}

.next-steps {
    margin-bottom: 30px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.step-icon {
    font-size: 30px;
    color: #e12e2e;
    margin-bottom: 15px;
}

.step-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: #666;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 36px;
    color: #e12e2e;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-card p {
    margin-bottom: 15px;
    color: #666;
}

.contact-card a {
    color: #e12e2e;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-content, 
    .service-list-content {
        flex-direction: column;
    }
    
    .service-text, 
    .service-image,
    .service-image-col,
    .service-details-col {
        width: 100%;
        max-width: none;
    }
    
    .service-image, 
    .service-image-col {
        margin-top: 30px;
    }
    
    .info-columns {
        flex-direction: column;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        flex-direction: column;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-banner {
        height: 400px;
    }
    
    .slide-overlay h1 {
        font-size: 32px;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-banner {
        height: 300px;
    }
    
    .slide-overlay h1 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
