/*
Theme Name: Hunters Locksmiths
Theme URI: https://hunterslocksmiths.co.uk
Author: Hunters Locksmiths
Author URI: https://hunterslocksmiths.co.uk
Description: A professional WordPress theme for Hunters Locksmiths, providing locksmith services in London and surrounding areas.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hunters-locksmiths
Tags: locksmith, business, professional, responsive
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
.site-header {
    background-color: #000;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.site-logo img {
    max-height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo img:hover {
    transform: scale(1.05);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation > ul > li {
    position: relative;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.main-navigation > ul > li > a:hover {
    color: #ff6b35;
}

.main-navigation .menu-item-has-children > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

/* Sub-menu - DESKTOP ONLY: Hidden by default, only show on hover */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    border-top: 3px solid #ff6b35;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 9999;
}

/* DESKTOP ONLY: Hover effects (min-width: 769px) */
@media (min-width: 769px) {
    .main-navigation li.menu-item-has-children:hover > .sub-menu,
    .main-navigation li.menu-item-has-children:focus-within > .sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Keep sub-menu visible when hovering over it */
    .main-navigation .sub-menu:hover {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Ensure sub-menu stays visible when hovering over parent */
    .main-navigation li.menu-item-has-children:hover .sub-menu {
        display: block !important;
    }
}

/* ALL SCREENS: Only show submenu when submenu-open class is present (for mobile click) */
.main-navigation li.menu-item-has-children.submenu-open > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    padding: 0;
    margin: 0;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: #fff;
    text-transform: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.main-navigation .sub-menu a:hover {
    background-color: #ff6b35;
    color: #fff;
    border-left-color: #fff;
    padding-left: 1.8rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #c44536 50%, #8b2e1f 100%);
    color: #fff;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.cta-primary {
    background-color: #000;
    color: #fff;
}

.cta-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.cta-secondary {
    background-color: #fff;
    color: #ff6b35;
}

.cta-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-emergency {
    background-color: #fff;
    color: #c44536;
    font-size: 1.1rem;
}

.cta-emergency:hover {
    background-color: #ff6b35;
    color: #fff;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: #ff6b35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #c44536;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    background: #fff;
    padding: 5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    color: #c44536;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
}

/* Home Sections */
.home-about, .home-services, .service-area, .home-contact {
    padding: 5rem 0;
}

.home-about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content-box {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-content-box h3 {
    font-size: 2rem;
    color: #c44536;
    margin-bottom: 2rem;
    font-weight: 700;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.7;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.5rem;
}

.read-more-link {
    display: inline-block;
    margin-top: 2rem;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #c44536;
    transform: translateX(5px);
}

/* Stats Boxes */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-box {
    background: linear-gradient(135deg, #ff6b35 0%, #c44536 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Emergency CTA */
.emergency-cta {
    background: linear-gradient(135deg, #c44536 0%, #8b2e1f 100%);
    color: #fff;
    padding: 4rem 0;
    margin: 3rem 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.emergency-icon {
    font-size: 4rem;
}

.emergency-text {
    flex: 1;
}

.emergency-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.emergency-text p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Service Area */
.service-area {
    background: #fff;
}

.area-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.area-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.area-box h3 {
    font-size: 1.6rem;
    color: #c44536;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.area-box p {
    color: #666;
    line-height: 1.8;
}

/* Contact Info Enhanced */
.contact-info-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.contact-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-box h3 {
    font-size: 1.6rem;
    color: #c44536;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-box p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-box a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: #c44536;
}

.contact-note {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.content-area {
    margin-bottom: 0;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: #c44536;
    text-align: center;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #c44536);
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-card {
    background: #fff;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0) 0%, rgba(196, 69, 54, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: block;
    transition: transform 0.4s ease;
}

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

.service-card-content {
    padding: 2rem;
}

.service-card h3 {
    color: #c44536;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card .service-link {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card .service-link:hover {
    color: #c44536;
    transform: translateX(5px);
}

.service-card .service-link::after {
    content: ' →';
    transition: transform 0.3s ease;
}

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

/* Service Page Single */
.service-page-header {
    background: linear-gradient(135deg, #ff6b35 0%, #c44536 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.service-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.service-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.service-page-header p {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.service-page-image-container {
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.service-page-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.service-page-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: #fff;
    pointer-events: none;
}

.service-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #fff;
}

.service-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 5px solid #ff6b35;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1rem;
}

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

.service-details {
    margin: 3rem 0;
}

.service-content h2 {
    color: #c44536;
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    border-left: 5px solid #ff6b35;
    padding-left: 1.5rem;
    position: relative;
}

.service-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #ff6b35 0%, #c44536 100%);
    border-radius: 3px;
}

.service-content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
}

.service-content ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.service-content ul li {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.5;
}

/* Enhanced Service Content */
.service-content-enhanced {
    max-width: 100%;
    margin: 0 auto;
}

.service-section {
    padding: 4rem 0;
}

.service-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-introduction {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-introduction .service-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
}

.service-introduction p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-section h2 {
    font-size: 2.5rem;
    color: #c44536;
    margin-bottom: 2rem;
    font-weight: 800;
}

.service-offerings {
    background: #fff;
}

.service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.service-list li {
    padding: 1rem 1rem 1rem 2.5rem;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.service-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0.8rem;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
}

.benefit-check {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-text {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-brands {
    background: #fff;
}

.service-brands p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.service-emergency-cta {
    background: linear-gradient(135deg, #c44536 0%, #8b2e1f 100%);
    padding: 5rem 0;
}

.emergency-cta-box-service {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 0 2rem;
}

.emergency-cta-box-service .emergency-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.emergency-cta-box-service h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.emergency-cta-box-service p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.service-area-info {
    background: #fff;
}

.service-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.coverage-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.coverage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.coverage-item h3 {
    font-size: 1.6rem;
    color: #c44536;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coverage-item p {
    color: #666;
    font-size: 1.1rem;
}

.service-contact-final {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.service-contact-item {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.service-contact-item strong {
    display: block;
    color: #c44536;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-contact-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.service-contact-item a:hover {
    color: #c44536;
}

.service-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #ff6b35;
}

.contact-info h3 {
    color: #c44536;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info strong {
    color: #000;
    font-weight: 700;
}

.contact-info a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #c44536;
    text-decoration: underline;
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #c44536;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, #ff6b35 0%, #c44536 100%);
    color: #fff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    color: #c44536;
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
    border-left: 4px solid #ff6b35;
    padding-left: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    width: 100%;
    max-width: 700px;
    height: 450px;
    margin: 2.5rem auto;
    display: block;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* About Page Sections */
.about-intro-section {
    padding: 4rem 0;
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    color: #c44536;
    margin-bottom: 2rem;
    font-weight: 800;
}

.lead-text {
    font-size: 1.3rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.image-placeholder-large {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #c44536 100%);
    color: #fff;
}

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

.mission-box h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.mission-box p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: #c44536;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
}

/* Expertise Section */
.expertise-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.expertise-box {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #ff6b35;
}

.expertise-box h3 {
    font-size: 1.8rem;
    color: #c44536;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.expertise-box p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    color: #555;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

.expertise-list li:last-child {
    border-bottom: none;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.3rem;
}

/* About CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background: #fff;
}

.about-cta-box {
    background: linear-gradient(135deg, #c44536 0%, #8b2e1f 100%);
    color: #fff;
    padding: 5rem 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.about-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-cta-box p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Contact */
.about-contact {
    padding: 4rem 0;
}

/* Contact Page Sections */
.contact-details-section {
    padding: 5rem 0;
    background: #fff;
}

.service-request-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.request-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
}

.request-content h2 {
    font-size: 2.5rem;
    color: #c44536;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.request-info {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.request-info h3 {
    font-size: 1.8rem;
    color: #c44536;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-methods {
    list-style: none;
    padding: 0;
}

.contact-methods li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.7;
}

.contact-methods li:last-child {
    border-bottom: none;
}

.contact-methods strong {
    color: #333;
    font-size: 1.1rem;
}

.contact-methods a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-methods a:hover {
    color: #c44536;
}

.method-note {
    color: #999;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.3rem;
}

/* Service Hours */
.service-hours {
    margin: 3rem 0;
}

.service-hours h3 {
    font-size: 1.8rem;
    color: #c44536;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hours-box {
    background: linear-gradient(135deg, #ff6b35 0%, #c44536 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    font-size: 1.1rem;
}

.hours-item .time {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Services Overview Box */
.services-overview-box {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #ff6b35;
}

.services-overview-box h3 {
    font-size: 2rem;
    color: #c44536;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-overview-box > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-category {
    margin: 2rem 0;
}

.service-category h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-category ul li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: #666;
}

.service-category ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Coverage Area Section */
.coverage-area-section {
    padding: 5rem 0;
    background: #fff;
}

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

.coverage-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.coverage-card h3 {
    font-size: 1.6rem;
    color: #c44536;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coverage-card p {
    color: #666;
    line-height: 1.7;
}

/* Final CTA */
.contact-final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #c44536 0%, #8b2e1f 100%);
}

.final-cta-box {
    text-align: center;
    color: #fff;
}

.final-cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.final-cta-box > p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-large {
    font-size: 1.4rem !important;
    padding: 1.5rem 4rem !important;
}

.cta-note {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 4rem 20px 1.5rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-widget h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 0.8rem;
}

.footer-widget a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #333;
    }

    .main-navigation.menu-open {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }

    .main-navigation > ul > li {
        width: 100%;
        border-bottom: 1px solid #333;
    }

    .main-navigation > ul > li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        padding: 1rem;
        display: block;
        width: 100%;
        border-radius: 0;
        min-height: 48px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.1);
        touch-action: manipulation;
    }

    /* Touch feedback for all menu links */
    .main-navigation > ul > li:active {
        background-color: rgba(255, 107, 53, 0.05);
    }

    /* Make parent menu items with children more tappable on mobile */
    .main-navigation .menu-item-has-children {
        cursor: pointer;
        position: relative;
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.1);
        touch-action: manipulation;
    }

    .main-navigation .menu-item-has-children > a {
        position: relative;
        padding-right: 3rem;
        user-select: none;
        -webkit-user-select: none;
    }

    /* Add touch feedback - entire row highlights on tap */
    .main-navigation .menu-item-has-children:active {
        background-color: rgba(255, 107, 53, 0.05);
    }

    /* Dropdown arrow */
    .main-navigation .menu-item-has-children > a::after {
        content: ' ▼';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        transition: transform 0.3s ease;
        font-size: 0.8rem;
        color: #ff6b35;
        pointer-events: none;
    }

    /* Rotate arrow when submenu is open */
    .main-navigation .menu-item-has-children.submenu-open > a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* MOBILE SUBMENU - Default hidden state */
    .main-navigation .sub-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background-color: #1a1a1a !important;
        box-shadow: none !important;
        border-top: none !important;
        border-left: none !important;
        left: auto !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* MOBILE SUBMENU - Open state (when submenu-open class is added) */
    .main-navigation .menu-item-has-children.submenu-open > .sub-menu {
        display: block !important;
        border-top: 1px solid #2a2a2a !important;
        animation: slideDown 0.3s ease-out !important;
    }

    /* Slide down animation */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile submenu items - FORCE VISIBLE */
    .main-navigation .sub-menu li {
        display: block !important;
        width: 100% !important;
        float: none !important;
        position: static !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid #2a2a2a !important;
        cursor: pointer !important;
    }

    .main-navigation .sub-menu li:last-child {
        border-bottom: none !important;
    }

    .main-navigation .sub-menu a {
        padding: 1rem 1rem 1rem 2rem !important;
        border-left: 3px solid #ff6b35 !important;
        background-color: #1a1a1a !important;
        display: block !important;
        width: 100% !important;
        color: #fff !important;
        text-decoration: none !important;
        position: static !important;
        float: none !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2) !important;
        touch-action: manipulation !important;
    }

    .main-navigation .sub-menu a:hover,
    .main-navigation .sub-menu a:active,
    .main-navigation .sub-menu a:focus {
        background-color: #2a2a2a !important;
        border-left-color: #fff !important;
        padding-left: 2.2rem !important;
    }

    /* Better touch feedback for submenu items */
    .main-navigation .sub-menu li:active {
        background-color: rgba(255, 107, 53, 0.1) !important;
    }

    .hero-section {
        padding: 5rem 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-box {
        padding: 1.5rem;
    }

    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content-box {
        padding: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-box {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Emergency CTA */
    .emergency-content {
        text-align: center;
        justify-content: center;
    }

    .emergency-text h2 {
        font-size: 2rem;
    }

    .emergency-text p {
        font-size: 1.1rem;
    }

    /* Area Content */
    .area-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .area-box {
        padding: 2rem;
    }

    /* Contact Boxes */
    .contact-info-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-box {
        padding: 2rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-intro {
        font-size: 1.1rem;
    }

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

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

    .service-card img {
        height: 200px;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .service-page-header {
        padding: 3rem 1.5rem;
    }

    .service-page-header h1 {
        font-size: 2rem;
    }

    .service-page-header p {
        font-size: 1.1rem;
    }

    .service-page-image {
        aspect-ratio: 16 / 9;
        min-height: 250px;
    }

    .service-content {
        padding: 2rem 1.5rem;
    }

    .service-content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem;
    }

    .service-intro {
        padding: 1.5rem;
    }

    .service-intro p {
        font-size: 1.1rem;
    }

    /* Enhanced Service Page Mobile */
    .service-section {
        padding: 3rem 0;
    }

    .service-inner {
        padding: 0 1.5rem;
    }

    .service-section h2 {
        font-size: 2rem;
    }

    .service-introduction .service-lead {
        font-size: 1.2rem;
    }

    .service-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .service-list li {
        font-size: 1rem;
    }

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

    .benefit-item {
        padding: 1.2rem;
    }

    .emergency-cta-box-service h2 {
        font-size: 2.2rem;
    }

    .emergency-cta-box-service p {
        font-size: 1.15rem;
    }

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

    .coverage-item {
        padding: 2rem;
    }

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

    .service-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* About Page Mobile */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-intro-content h2 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.15rem;
    }

    .mission-box h2 {
        font-size: 2.2rem;
    }

    .mission-box p {
        font-size: 1.15rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-card {
        padding: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-box {
        padding: 2rem;
    }

    .expertise-box h3 {
        font-size: 1.6rem;
    }

    .about-cta-box {
        padding: 3rem 2rem;
    }

    .about-cta-box h2 {
        font-size: 2rem;
    }

    .about-cta-box p {
        font-size: 1.15rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Contact Page Mobile */
    .request-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .request-content h2 {
        font-size: 2rem;
    }

    .request-info {
        padding: 2rem;
    }

    .hours-box {
        padding: 2rem;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .services-overview-box {
        padding: 2rem;
    }

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

    .coverage-card {
        padding: 2rem;
    }

    .final-cta-box h2 {
        font-size: 2.2rem;
    }

    .final-cta-box > p {
        font-size: 1.1rem;
    }

    .cta-large {
        font-size: 1.2rem !important;
        padding: 1.2rem 2rem !important;
        width: 100%;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Image Placeholder Styles */
.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}
