
:root {
    --primary-color: #4b04cfea;
    --primary-dark: #a80314;
    --primary-light: #f9d6da;
    --dark-color: #222;
    --light-color: #fff;
    --gray-color: #f8f8f8;
    --medium-gray: #eee;
    --text-color: #444;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    color: var(--dark-color);
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 4, 25, 0.1);
}

/* Navbar Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
    line-height: 1.1;
}

.logo span {
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
    border-radius: 1.5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Header Section */
.header {
    padding-top: 140px;
    background: linear-gradient(135deg, var(--gray-color) 0%, #fff 100%);
    overflow: hidden;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-light);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.header-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.header-content h1 {
    font-size: 3.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-content h1 span {
    color: var(--primary-color);
    display: block;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    max-width: 600px;
}

.header-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.header-image .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.header-image .image-wrapper:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.header-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.header-image .image-wrapper:hover img {
    transform: scale(1.05);
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about-image .image-frame {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image .image-frame::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    border-radius: 10px;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image .image-frame:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    color: var(--dark-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-box {
    background-color: var(--gray-color);
    padding: 25px;
    border-radius: 8px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Service Area Section */
.service-area {
    background-color: var(--gray-color);
}

.service-area-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-area-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.surrounding-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.area-tag {
    background-color: var(--light-color);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.area-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.area-tag.highlight {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.area-tag.highlight:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Additional Services Section */
.additional-services {
    background-color: var(--light-color);
}

.service-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-description {
    flex: 1;
    min-width: 300px;
    padding: 0 40px;
}

.service-description h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    margin: 20px 0;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.03);
}

.service-features {
    flex: 1;
    min-width: 300px;
    padding: 0 40px;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

/* Detailed Services Section */
.detailed-services {
    background-color: var(--gray-color);
}

.detailed-service-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.detailed-service-item:last-child {
    margin-bottom: 0;
}

.detailed-service-info {
    flex: 1;
    min-width: 300px;
    padding: 0 40px;
}

.detailed-service-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.detailed-service-image {
    flex: 1;
    min-width: 300px;
    margin: 20px 0;
}

.detailed-service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.detailed-service-image:hover img {
    transform: scale(1.03);
}

/* Services Section */
.services {
    background-color: var(--light-color);
}

.services-intro {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.services-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.services-content h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.services-image {
    flex: 1;
    min-width: 300px;
}

.services-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.service-card {
    background-color: var(--gray-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--gray-color);
}

.benefits-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.benefits-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.benefit-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-item:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    background-color: var(--light-color);
}

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

.faq-item {
    background-color: var(--gray-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 300px;
}

.city-mention {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
}

.contact .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

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

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--light-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-content h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header {
        padding-top: 120px;
    }

    .header-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .service-description,
    .service-features,
    .detailed-service-info {
        padding: 0 20px;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

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

@media (max-width: 576px) {
    .header-content h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }

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

    .service-description,
    .service-features,
    .detailed-service-info {
        padding: 0 10px;
    }
}
