/* 
* Locksmith Wichita KS - Main Stylesheet
* Author: Locksmith Wichita KS
* Version: 1.0
*/

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #0056b3;
    --secondary-color: #ffc107;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #333;
    --light-text: #fff;
    --border-color: #ddd;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

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

a:hover {
    color: var(--secondary-color);
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.primary-btn:hover {
    background-color: #004494;
    color: var(--light-text);
}

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

.secondary-btn:hover {
    background-color: #e0a800;
    color: var(--dark-color);
}

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

.section-header h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

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

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 28px;
}

.logo-text h1 {
    font-size: 24px;
    margin-bottom: 0;
    color: var(--primary-color);
}

.logo-text p {
    font-size: 14px;
    margin-bottom: 0;
    color: #777;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-info .phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-info .hours {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

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

/* ===== HERO SECTION ===== */
.hero {
    background-color: #f5f8fd;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
}

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

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Service Image Styles */
.service-image {
    width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-img {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .service-image {
        max-width: 90%;
        margin: 15px auto;
        display: block;
    }
}

@media (max-width: 576px) {
    .hero-img {
        max-width: 100%;
    }
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: #fff;
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
    text-align: center;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    background-color: #f5f8fd;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
}

/* ===== ABOUT US SECTION ===== */
.about-us {
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text .section-header {
    text-align: left;
}

.about-text .section-header h2:after {
    left: 0;
    transform: none;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: #f5f8fd;
    border-radius: 10px;
    flex: 1;
    margin-right: 15px;
}

.stat:last-child {
    margin-right: 0;
}

.stat h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.about-image {
    flex: 1;
}

.about-image-placeholder {
    background-color: #f5f8fd;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.about-image-placeholder i {
    font-size: 100px;
    margin-bottom: 20px;
}

.about-image-placeholder span {
    font-size: 20px;
    font-weight: 600;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: #f5f8fd;
    position: relative;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonial {
    min-width: 100%;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 18px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-color: #f5f8fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 36px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.rating {
    color: var(--secondary-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: #004494;
}

/* ===== SERVICE AREAS SECTION ===== */
.service-areas {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.area-column {
    width: calc(25% - 20px);
    margin-bottom: 30px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.area-column h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.area-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.area-column ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.area-column ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1;
}

.area-column ul li:last-child {
    border-bottom: none;
}

.areas-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.areas-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.areas-content p:last-child {
    margin-bottom: 0;
}

.areas-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

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

@media (max-width: 992px) {
    .area-column {
        width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .area-column {
        width: 100%;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: #f5f8fd;
}

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

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.contact-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.contact-item p {
    color: #666;
    margin-bottom: 5px;
}

.contact-item p:last-child {
    margin-bottom: 0;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-container form {
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.form-group button:hover {
    background-color: var(--primary-dark);
}

#polyares_form {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
        margin-bottom: 30px;
    }
    
    #polyares_form {
        height: 500px !important; /* Slightly taller on mobile to prevent scrolling */
    }
}

/* ===== FAQ SECTION ===== */
.faq {
    background-color: #fff;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f5f8fd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    margin-bottom: 0;
    flex: 1;
}

.faq-question i {
    font-size: 16px;
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

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

.cta .secondary-btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta .secondary-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
    margin-right: 0;
}

.footer-logo h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
}

.footer-links h3, .footer-services h3, .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after, .footer-services h3:after, .footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links ul li a, .footer-services ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover, .footer-services ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

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

.footer-contact p a {
    color: #aaa;
}

.footer-contact p a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ===== FLOATING CALL BUTTON ===== */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-call-button a {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-call-button a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.floating-call-button i {
    margin-right: 10px;
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background-color: var(--secondary-color);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero-content h2 {
        font-size: 36px;
    }
    
    .service-box {
        padding: 25px 20px;
    }
}

@media (max-width: 992px) {
    header .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
        margin-bottom: 15px;
    }
    
    nav {
        width: 100%;
        justify-content: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        width: calc(50% - 20px);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links, .footer-contact {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .stat {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        width: 100%;
        margin-right: 0;
    }
    
    .testimonials-slider {
        padding: 0 10px;
    }
    
    .prev-btn, .next-btn {
        display: none;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .contact-form, .contact-info-box {
        width: 100%;
        margin: 0 0 30px 0;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .floating-call-button {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-call-button a {
        padding: 10px 15px;
    }
    
    .floating-call-button span {
        display: none;
    }
    
    .floating-call-button i {
        margin-right: 0;
    }
    
    .content-article {
        padding: 20px 15px;
    }
    
    .content-article h2 {
        font-size: 22px;
    }
    
    .content-article h3 {
        font-size: 18px;
    }
    
    .service-highlight {
        padding: 15px;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 50px 20px 20px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

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

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Main Content Styles */
.main-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.content-article {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 40px;
    margin-bottom: 40px;
}

.content-article h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.content-article h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 35px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.content-article p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.service-highlight {
    background-color: #f5f8fd;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.service-highlight h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 12px;
}

.service-highlight p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .content-article {
        padding: 25px;
    }
    
    .content-article h2 {
        font-size: 24px;
    }
    
    .content-article h3 {
        font-size: 20px;
    }
    
    .service-highlight {
        padding: 15px;
    }
}

/* ===== MAP SECTION ===== */
.map-container {
    margin-top: 50px;
    width: 100%;
}

.map-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    width: 100%;
}

.map-wrapper iframe {
    display: block;
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 350px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
}

/* Success message styling */
.success-message {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.success-message i {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 15px;
}

.success-message h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.success-message p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.success-message button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.success-message button:hover {
    background-color: var(--primary-dark);
}

/* WebP Image Styles */
picture {
    display: block;
    width: 100%;
    height: auto;
}

.source {
    display: none;
}

@media (max-width: 768px) {
    .hero-img {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .service-image {
        max-width: 90%;
        margin: 15px auto;
        display: block;
    }
}

@media (max-width: 576px) {
    .hero-img {
        max-width: 100%;
    }
}
