@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/*
    Color Palette:
    - Dark Blue: #0A2342
    - White: #FFFFFF
    - Bright Accent: #2CA58D
    - Light Gray: #f4f4f4
    - Dark Gray: #333333
*/

/* Root Variables */
:root {
    --primary-color: #0A2342;
    --secondary-color: #FFFFFF;
    --accent-color: #2CA58D;
    --light-gray: #f4f4f4;
    --dark-gray: #333333;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Roboto', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--secondary-color);
    margin: 0;
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }
}

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

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

a:hover {
    color: #1a6b58; /* Darker accent */
}

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

/* Header */
header {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1100;
}

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

.logo a {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    width: 180px;   /* increase width */
    height: 80px;   /* increase height */
    object-fit: contain; /* keeps aspect ratio inside box */
}


header nav {
    display: none; /* Hidden on mobile */
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.header-phone a {
    font-weight: 500;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.header-social a {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.header-social a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    header .container {
        justify-content: flex-start;
    }
    .header-phone {
        width: auto;
        margin-left: auto;
        justify-content: center;
        margin-top: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .mobile-nav-toggle {
        margin-left: 0.5rem;
    }
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.7)), url(../images/hero-background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--secondary-color);
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .phone-number {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.hero .phone-number a {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 1rem;
}

.hero-phone-container {
    margin-top: 2rem;
}

.hero-phone-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-phone-button:hover {
    background-color: #258a74; /* A slightly darker shade of accent */
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.hero-phone-button i {
    margin-right: 1rem;
    font-size: 1.8rem;
}

.hero-phone-button span {
    display: inline-block;
}

.hero-phone-button strong {
    font-size: 1.8rem;
}

.availability-text {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.tag-cloud {
    text-align: center;
    padding: 2rem 0;
}

.tag-cloud a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border-radius: 25px;
    background-color: var(--light-gray);
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag-cloud a:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.tag-cloud .tag-large a {
    font-size: 1.5rem;
    font-weight: 700;
}

.tag-cloud .tag-medium a {
    font-size: 1.2rem;
    font-weight: 500;
}

.tag-cloud .tag-small a {
    font-size: 1rem;
    font-weight: 400;
}

/* Trust Signals */
.trust-signals {
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.trust-signals .container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.trust-signals .signal {
    flex: 1;
}

.trust-signals .signal i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

/* Services Overview */
.services-overview {
    padding: 3rem 0;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-item a {
    display: block;
    background-color: var(--light-gray);
    padding: 2rem;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Promo Banner */
.promo-banner {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 2rem 1rem;
}

.promo-banner .promo-text {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.promo-banner .cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.promo-banner .cta-button:hover {
    color: var(--primary-color);
}

.content-image {
    width: 80px;
    height: auto;
    border-radius: 5px;
    display: block;
    margin: 0 auto 1rem;
}

.locations-overview {
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.locations-overview h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials {
    padding: 3rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.testimonial-slider {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    border-radius: 5px;
    perspective: 1000px;
}

@media (min-width: 768px) {
    .testimonial-slider {
        padding: 2rem;
    }
}

.testimonial-slides-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 1rem;
    background-color: rgba(12, 42, 76, 0.5); /* Slightly lighter blue with opacity */
    border-radius: 5px;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    display: none; /* Hide slides by default */
}

@media (min-width: 768px) {
    .testimonial-slide {
        padding: 1.5rem;
    }
}

.testimonial-slide.active {
    background-color: #0c2a4c;
    position: relative;
    display: block; /* Only show active slide */
    z-index: 2;
}

.testimonial-slide.prev,
.testimonial-slide.next {
    display: none; /* Ensure previous/next slides remain hidden */
}

.testimonial-slide .stars {
    color: #ffc107; /* Gold color for stars */
    margin-bottom: 1rem;
}

.testimonial-slide cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 500;
    color: var(--accent-color);
}

.testimonial-slider {
    min-height: 250px; /* Adjust as needed */
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%; /* Each slide takes full width */
    }
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.prev-slide, .next-slide {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    pointer-events: all;
    transition: background-color 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prev-slide {
    left: 5px;
}

.next-slide {
    right: 5px;
}

@media (min-width: 768px) {
    .prev-slide, .next-slide {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }

    .prev-slide {
        left: 10px;
    }

    .next-slide {
        right: 10px;
    }
}

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

@media (max-width: 600px) {
    .testimonial-slider {
        padding-bottom: 2.5rem; /* Room for slider controls */
    }

    .slider-controls {
        top: auto;
        bottom: 0.5rem;
        transform: none;
    }

    .prev-slide,
    .next-slide {
        top: auto;
        bottom: 0;
        transform: none;
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-subheading {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: 500;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background-color: var(--secondary-color);
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.faq-item summary {
    padding: 1rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    list-style: none; /* Remove default marker */
}

.faq-item summary::-webkit-details-marker {
    display: none; /* For Chrome/Safari */
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1rem;
    margin: 0;
    line-height: 1.7;
}


/* Contact Section */
.contact-section {
    padding: 3rem 0;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: none;
}

.contact-form textarea,
.contact-form-container textarea {
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form-container input:focus,
.contact-form-container textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 5px var(--accent-color);
    outline: none;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.captcha-image {
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.refresh-captcha {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.refresh-captcha:hover {
    background-color: #1a6b58;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 5px;
}

#coverage-map {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

@media (min-width: 768px) {
    #coverage-map {
        height: 500px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding-top: 3rem;
}

footer h3 {
    color: var(--secondary-color);
}

.footer-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a, .footer-contact a {
    color: var(--secondary-color);
}

.social-media a {
    margin: 0 0.5rem;
    font-size: 1.5rem;
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #0c2a4c; /* Slightly lighter blue */
}

/* Media Queries */
@media (min-width: 768px) {
    header nav {
        display: block;
    }
    header nav ul {
        display: flex;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .trust-signals .container {
        flex-direction: row;
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-flex {
        flex-direction: row;
    }
    .contact-form, .contact-map {
        flex: 1;
    }
    .footer-flex {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .brand-grid.single-line {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .brand-grid.single-line .brand {
        width: auto;
        flex: 1 0 100px;
    }
}

/* Service Page Specific Styles */
.hero-small {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem 0;
    text-align: center;
}

.hero-small h1 {
    color: var(--secondary-color);
}

.service-content {
    padding: 3rem 0;
}

.service-description {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 5px;
}

.service-description ul {
    list-style: none;
    padding-left: 0;
}

.service-description ul li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-description ul li::before {
    content: '\2713'; /* Checkmark */
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.service-cta {
    background-color: var(--light-gray);
    padding: 2rem;
    text-align: center;
    border-radius: 5px;
    margin-top: 2rem;
}

/* Contact Page Specific Styles */
.contact-content {
    padding: 3rem 0;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-form-container,
.contact-info-container {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 5px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.contact-details li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .contact-wrapper {
        flex-direction: row;
    }
    .contact-form-container {
        flex: 2;
    }
    .contact-info-container {
        flex: 1;
    }
}

/* Locations Page Specific Styles */
.locations-list {
    padding: 3rem 0;
}

.area-group {
    margin-bottom: 3rem;
}

.area-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    text-align: left;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.location-item.hidden {
    display: none;
}

.location-item {
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.location-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.location-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

.location-item a:hover {
    color: var(--accent-color);
}

.location-item img {
    height: 80px;
    width: 80px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.location-item h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* Stats Section */
.stats {
    padding: 2rem 0;
    background-color: var(--secondary-color);
}
.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.stats .stat {
    padding: 1rem 0;
}
.stat i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}
.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (min-width: 768px) {
    .stats .stat:not(:last-child) {
        border-right: 1px dotted var(--light-gray);
    }
}

/* Feature Highlights */
.feature-highlights {
    padding: 2rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}
.feature-highlights .container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}
.feature i {
    font-size: 1.8rem;
    color: #e53935;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .feature-highlights .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Area Coverage */
/* Trusted Locksmith Services Section */
.trusted-locksmith-services {
    padding: 3rem 0;
}

.trusted-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

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

@media (min-width: 768px) {
    .trusted-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.area-coverage {
    padding: 3rem 0;
    background-color: var(--light-gray);
}
.area-coverage h2,
.area-coverage p {
    text-align: center;
}

.area-list {
    list-style: disc;
    margin: 1rem auto 2rem;
    padding-left: 1.5rem;
    max-width: 720px;
    text-align: left;
}

.area-list li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.area-cta {
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
}
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.coverage-box {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.coverage-box h3 {
    margin-top: 0;
}
.coverage-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.coverage-box li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.coverage-box li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}
.new-tag {
    color: var(--accent-color);
}

/* Brand Logos */
.brand-logos {
    padding: 3rem 0;
}
.brand-logos h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    justify-items: center;
    margin-bottom: 2rem;
}
.brand {
    background-color: var(--light-gray);
    padding: 1rem;
    border-radius: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
}
.brand img {
    width: 40px;
    height: 40px;
}
.brand-check {
    text-align: center;
}
.brand-check i {
    font-size: 3rem;
    color: var(--accent-color);
}

.section-divider {
    border: none;
    height: 2px;
    background-color: var(--light-gray);
    margin: 2rem 0;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1003; /* Ensure it's above the mobile nav */
    position: relative; /* Needed for z-index and pseudo-elements */
    width: 30px;
    height: 22px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle .hamburger,
.mobile-nav-toggle .hamburger::before,
.mobile-nav-toggle .hamburger::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    width: 100%;
    height: 3px;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-nav-toggle .hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-nav-toggle .hamburger::before {
    top: -8px;
}

.mobile-nav-toggle .hamburger::after {
    bottom: -8px;
}

.mobile-nav-toggle.is-active .hamburger {
    background-color: transparent;
}

.mobile-nav-toggle.is-active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--primary-color);
}

.mobile-nav-toggle.is-active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
    background-color: var(--primary-color);
}


.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    padding-top: 4rem;
    text-align: center;
    z-index: 1002;
}

.mobile-nav.is-active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 2rem;
}

.mobile-nav ul a {
    color: var(--secondary-color);
    font-size: 1.5rem;
}


@media (min-width: 768px) {
    .mobile-nav-toggle {
        display: none;
    }
}

/* SEO Content Styling */
.seo-content {
    background-color: var(--light-gray);
    padding: 3rem 0;
    margin-top: 2rem;
}

.seo-content .container {
    background-color: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Animation Styles */
.service-extra,
.service-guarantee p {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShine 3s linear infinite;
    font-weight: 600;
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating contact elements */
.phone-bubble {
    position: fixed;
    right: 20px;
    bottom: 100px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    opacity: 0;
    animation: slide-in 0.5s forwards, float 3s ease-in-out infinite 0.5s;
    z-index: 1000;
}

.phone-bubble a {
    color: var(--secondary-color);
}

.whatsapp-chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25d366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-chat:hover {
    background-color: #1ebe5d;
}

@media (max-width: 768px) {
    .phone-bubble {
        display: none;
    }
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* About Us Section */
.about-us-section {
    padding: 3rem 0;
}

.about-us-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.about-us-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.about-us-section .container p {
    color: var(--dark-gray);
}

.about-us-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-us-images img {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-us-images img:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .about-us-images {
        grid-template-columns: repeat(2, 1fr);
    }
}
