:root {
    --primary-color: #03cfbe;
    --primary-dark: #03b8a8;
    --secondary-color: #2c3e50;
    --light-color: #f8f9fa;
    --dark-color: #333;
    --gray-color: #6c757d;
}



.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s;
    color: var(--secondary-color) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 207, 190, 0.3);
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    color: var(--secondary-color);
}



.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.why-choose-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
}

.why-choose-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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



.service-area-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.service-area-box:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}




/* Hero Slider */
.hero-slider {
    position: relative;
}

.hero-slide {
    padding: 100px 0;
    text-align: center;
}

.hero-slide h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-slide p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slide h1 {
        font-size: 2.2rem;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 15px;
    }

    .nav-link {
        margin: 5px 0;
    }

    .btn-primary {
        margin-top: 10px;
    }
}





body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.hero-slider {
    position: relative;
    height: 100vh;
    max-height: 800px;
    overflow: hidden;
    color: var(--light-color);
}

.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item {
    height: 100%;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-slide h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-slide p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover::after {
    transform: translateX(0);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Slider Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.owl-prev,
.owl-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.owl-prev:hover,
.owl-next:hover {
    background-color: var(--primary-color) !important;
}

.owl-prev i,
.owl-next i {
    font-size: 1.8rem;
    color: var(--light-color);
}

/* Slider Dots */
.owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.owl-dot {
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    margin: 0 8px !important;
    transition: var(--transition);
}

.owl-dot.active {
    background-color: var(--primary-color) !important;
    transform: scale(1.2);
}

/* Slider Counter */
.slider-counter {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10;
}

/* Call to Action Box */
.cta-box {
    position: absolute;
    bottom: 100px;
    right: 30px;
    background-color: rgba(3, 207, 190, 0.95);
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
    z-index: 10;
    animation: fadeInRight 1s ease 0.9s both;
    box-shadow: var(--shadow);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--light-color);
}

.cta-box p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.cta-box .phone {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.cta-box .phone i {
    margin-right: 10px;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    .hero-slide p {
        font-size: 1.2rem;
    }

    .cta-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        max-height: 700px;
    }

    .hero-slide h1 {
        font-size: 2.2rem;
    }

    .hero-slide p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
    }

    .btn-lg {
        padding: 14px 30px;
    }

    .owl-nav {
        display: none;
    }

    .slider-counter {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slide h1 {
        font-size: 1.8rem;
    }

    .hero-slide p {
        font-size: 1rem;
    }

    .slider-counter {
        display: none;
    }
}





/* Services Section */
.services-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}



.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 30px auto 0;
}

/* Services Container - Horizontal Layout */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Individual Service Row */
.service-row {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-height: 400px;
}

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

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    flex: 1;
    padding: 50px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.service-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.service-cta:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Service Number Badge */
.service-number {
    position: absolute;
    top: -15px;
    left: 0;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .service-content {
        padding: 40px;
    }
}

@media (max-width: 900px) {

    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
        min-height: auto;
    }

    .service-image {
        width: 100%;
        min-height: 300px;
    }

    .service-content {
        width: 100%;
    }

    .services-container {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2.2rem;
    }

    .service-content {
        padding: 30px;
    }

    .service-title {
        font-size: 1.8rem;
    }

    .services-section {
        padding: 60px 15px;
    }
}

/* Company Branding */
.company-brand {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 50px auto 0;
}

.company-name {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.company-location {
    color: var(--text-light);
    font-size: 1.2rem;
}








.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Item */
.faq-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.faq-question {
    padding: 25px 30px;
    background-color: var(--light-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

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

.faq-question.active {
    background-color: var(--primary-light);
    border-bottom: 1px solid #eee;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    flex: 1;
    padding-right: 20px;
}

.location-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--primary-dark);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background-color: var(--light-color);
}

.faq-answer.open {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
}

.faq-answer li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -5px;
}

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

.contact-note {
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-color);
}

.contact-note p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Company Info */
.company-info {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.company-name {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.company-location {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    margin-top: 10px;
    border: 2px solid var(--primary-color);
}

.contact-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.2rem;
    }

    .faq-answer.open {
        padding: 20px;
    }

    .location-tag {
        display: block;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-question h3 {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .faq-icon {
        align-self: flex-end;
        position: absolute;
        right: 20px;
        top: 20px;
    }
}

/* FAQ Counter */
.faq-counter {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
    font-size: 1rem;
}




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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 80px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}



.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 30px auto 0;
}

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

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

.service-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2rem;
}

.service-content {
    padding: 40px 30px;
    text-align: center;
}

.service-title {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}


/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        padding-top: 60px;
    }

    .additional-services,
    .contact-section {
        padding: 60px 0;
    }

    .contact-info {
        padding: 30px;
    }

    .service-content {
        padding: 30px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .service-title {
        font-size: 1.6rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icon {
        margin-bottom: 15px;
    }
}




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



.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
    border-radius: 2px;
}

/* Contact Info Top Section */
.contact-info-top {
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 60px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.contact-info-top:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

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

.info-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.info-title {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-detail {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.info-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-detail a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Map Bottom Section */
.map-bottom {
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}


.map-overlay {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow);
}

.map-title {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.map-address {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.map-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.map-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.map-btn.outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.map-btn.outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 30px;
    font-weight: 300;
}

.footer-address {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.address-line {
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.address-line:last-child {
    margin-bottom: 0;
}

.address-line i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-info-footer {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item-footer i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.contact-item-footer a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-item-footer a:hover {
    color: var(--primary-color);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

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

    .contact-info-top {
        padding: 40px 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-container {
        height: 300px;
    }

    .map-overlay {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .map-buttons {
        flex-direction: column;
        align-items: center;
    }

    .map-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .contact-info-footer {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .contact-info-top {
        padding: 30px 20px;
    }

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

    .map-title {
        font-size: 1.5rem;
    }

    .map-address {
        font-size: 1.1rem;
    }
}
