/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Arial', sans-serif;
    color: #FCE7C8;
    background-color: #111;
    line-height: 1.6;
}

/* Hero Section with Enhanced Parallax Effect */
.hero-sec {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('/img/sanbardino12.webp') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    animation: heroFadeIn 2s ease-in-out;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

.hero-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.overlay-sec {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-in-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.overlay-sec h1 {
    color: #F5F0CD;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.2px;
    line-height: 1.2;
    background: linear-gradient(45deg, #F5F0CD, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overlay-sec p {
    color: #F8FAFC;
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

/* Enhanced Quote Button with Professional Styling */
.quote-btn-sec {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4), 0 0 0 0 rgba(211, 47, 47, 0.6);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: pulseEffect 3s infinite;
}

@keyframes pulseEffect {
    0% { box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4), 0 0 0 0 rgba(211, 47, 47, 0.6); }
    50% { box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4), 0 0 0 15px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4), 0 0 0 0 rgba(211, 47, 47, 0); }
}

.quote-btn-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b71c1c 0%, #7f0000 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.quote-btn-sec:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.6);
    color: white;
    text-decoration: none;
}

.quote-btn-sec:hover::after {
    opacity: 1;
}

.quote-btn-sec:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

/* About Section with Improved Spacing and Typography - FULL SIZE */
.security-jobs-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 10%;
    background: linear-gradient(135deg, #121212, #1c1c1c);
    color: white;
    position: relative;
    overflow: hidden;
}

.security-jobs-sec::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.05) 0%, rgba(184, 134, 11, 0) 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.security-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.security-content-sec {
    max-width: 900px;
    padding: 40px;
    background: rgba(28, 28, 28, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.security-content-sec h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, #F5F0CD, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.security-content-sec h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 2px;
}

.security-content-sec h2 {
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 25px;
    color: #F5F0CD;
    font-weight: 700;
    letter-spacing: 1px;
}

.security-content-sec p {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #f0f0f0;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Highlight Box with Enhanced Design */
.highlight-box {
    background: rgba(212, 175, 55, 0.08);
    border-left: 5px solid #D4AF37;
    padding: 30px;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin: 35px 0;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 100%);
    z-index: -1;
}

.highlight-box p {
    text-align: left;
    font-size: 1.3rem;
}

.highlight-box p strong {
    color: #D4AF37;
    font-weight: 700;
}

/* Enhanced Security Features Section with Premium Design */
.security-features {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.security-features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.security-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    z-index: 1;
}

.security-features h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #F5F0CD, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

.security-features h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(45deg, #D4AF37, #F5F0CD);
    margin: 18px auto 0;
    border-radius: 2px;
}

/* Features Grid Layout with Improved Cards */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 50px 35px;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid rgba(212, 175, 55, 0.1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s ease;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F5F0CD);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-item:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(145deg, #333333, #262626);
}

.feature-item:hover::after {
    left: 100%;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item i {
    font-size: 60px;
    background: linear-gradient(135deg, #D4AF37, #F5F0CD, #E6C547);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.5s ease;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.feature-item:hover i {
    transform: scale(1.1) translateY(-4px);
}

.feature-item h3 {
    font-size: 1.6rem; /* SMALLER HEADING */
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature-item:hover h3::after {
    width: 50px;
    background: #D4AF37;
}

.feature-item p {
    font-size: 1rem; /* SMALLER TEXT */
    color: #D0D0D0;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Consultation Banner with Improved Visual Appeal */
.consultation-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e9e5d8, #d8d0ba);
    padding: 100px 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultation-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
}

.consultation-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(160, 21, 62, 0.08) 0%, rgba(160, 21, 62, 0) 70%);
    border-radius: 50%;
}

.consultation-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
}

.consultation-content h1 {
    font-size: 3rem; /* SMALLER HEADING */
    font-weight: 800;
    color: #000000;
    line-height: 1.3;
    display: inline-block;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    text-shadow: none;
}

.consultation-content h1::before, 
.consultation-content h1::after {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 4rem; /* SMALLER QUOTE MARKS */
    color: rgba(160, 21, 62, 0.15);
    position: absolute;
}

.consultation-content h1::before {
    top: -25px;
    left: -35px;
}

.consultation-content h1::after {
    bottom: -40px;
    right: -35px;
}

.underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #A0153E, transparent);
    margin: 20px auto 40px auto;
    display: block;
    position: relative;
}

.underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: white;
    filter: blur(3px);
    animation: shimmerEffect 3s infinite linear;
}

@keyframes shimmerEffect {
    from { transform: translateX(-100%); }
    to { transform: translateX(500%); }
}

.consultation-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-size: 1.4rem; /* SMALLER TEXT */
    color: #1c1c1c;
    background: linear-gradient(135deg, #d3f0e4, #b8e6d2);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 25px rgba(0, 128, 128, 0.2);
    position: relative;
    overflow: hidden;
}

.phone-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
}

.phone-button:hover {
    background: linear-gradient(135deg, #b8e6d2, #98d7c2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 128, 128, 0.3);
    color: #004444;
    text-decoration: none;
}

.phone-button:hover::before {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    to {
        transform: translateX(100%);
    }
}

.phone-button::after {
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 1.2rem; /* SMALLER ICON */
}

/* Services Section with Enhanced Card Design */
.services-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 10%;
    background: linear-gradient(to bottom, #1D1D1D, #161616);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.services-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-title {
    font-size: 3rem; /* SMALLER HEADING */
    background: linear-gradient(135deg, #FFFFFF, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
}

.services-title::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    top: -20px;
    left: -35px;
    z-index: -1;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 12px auto 50px auto;
    display: block;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 100%;
    background: white;
    opacity: 0.6;
    filter: blur(4px);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(800%); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.service-item {
    background: rgba(35, 35, 35, 0.7);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: #D0D0D0;
    font-size: 1.1rem; /* SMALLER TEXT */
    line-height: 1.6;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-item:hover {
    background: rgba(45, 45, 45, 0.9);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
    color: #FFFFFF;
    text-decoration: none;
}

.service-item:hover::before {
    opacity: 1;
}

.icon-large {
    font-size: 3rem; /* REDUCED ICON SIZE */
    margin-bottom: 18px;
    color: #D4AF37;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-item:hover .icon-large {
    color: #F5F0CD;
    transform: scale(1.1) translateY(-4px);
}

.service-item p {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    font-size: 1.15rem; /* SMALLER TEXT */
    font-weight: 500;
    margin-top: 8px;
}

/* Cities Section with Premium Design */
.security-cities-sec {
    padding: 100px 10%;
    background: linear-gradient(135deg, #f5f0e1, #e8e0d0);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: inset 0 15px 35px rgba(0, 0, 0, 0.05);
}

.security-cities-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/map-pattern.png') repeat;
    opacity: 0.05;
    animation: subtle-shift 100s linear infinite;
}

@keyframes subtle-shift {
    from { background-position: 0 0; }
    to { background-position: 1000px 1000px; }
}

.cities-container-sec {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    max-width: ```text
1200px;
    margin-left: auto;
    margin-right: auto;
}

.city-sec {
    margin: 0;
    padding: 15px 25px; /* SMALLER PADDING */
    background: linear-gradient(135deg, #3A3A3A, #222222);
    color: white;
    border-radius: 40px; /* SMALLER RADIUS */
    font-weight: 600;
    font-size: 1.1rem; /* SMALLER TEXT */
    letter-spacing: 0.5px;
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.18);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px; /* SMALLER WIDTH */
    position: relative;
    overflow: hidden;
}

.city-sec a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.city-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.city-sec:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.city-sec:hover::before {
    opacity: 1;
}

.city-sec:hover a {
    color: white;
    text-decoration: none;
}

.security-cities-sec h2 {
    font-size: 3rem; /* SMALLER HEADING */
    font-weight: 800;
    background: linear-gradient(135deg, #1A1A1A, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

.security-cities-sec h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1A1A1A, #D4AF37, #1A1A1A);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-title {
        font-size: 2.6rem;
    }

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

    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .overlay-sec h1 {
        font-size: 3rem;
    }

    .overlay-sec p {
        font-size: 1.3rem;
    }

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

    .security-content-sec h2 {
        font-size: 1.8rem;
    }

    .security-content-sec p {
        font-size: 1.2rem;
    }

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

    .consultation-content h1::before,
    .consultation-content h1::after {
        font-size: 3.5rem;
    }

    .consultation-buttons {
        flex-direction: column;
    }

    .consultation-buttons > * {
        margin-bottom: 15px;
    }

    .phone-button {
        font-size: 1.3rem;
    }

    .phone-button::after {
        font-size: 1.1rem;
    }

    .services-section {
        padding: 80px 5%;
    }

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

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

    .security-cities-sec {
        padding: 80px 5%;
    }

    .security-cities-sec h2 {
        font-size: 2.4rem;
    }

    .cities-container-sec {
        flex-direction: column;
    }

    .city-sec {
        margin-bottom: 15px;
        min-width: 100%;
        max-width: 300px;
    }
}


/* Video Styles */
.video-container1 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}


/* NEW: Professional San Bernardino Enhancements */

/* Statistics Counter Section */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23D4AF37" opacity="0.1"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D4AF37, #F5F0CD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: block;
    counter-reset: stat-counter;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Enhanced Service Area Grid */
.service-area-enhanced {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 100px 0;
    position: relative;
}

.area-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.area-card-enhanced {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.area-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F5F0CD);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.area-card-enhanced:hover::before {
    transform: scaleX(1);
}

.area-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.area-icon {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 20px;
}

.area-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.area-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Professional Contact Banner */
.contact-banner-pro {
    background: linear-gradient(135deg, #1a3c6e, #2c5aa0);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-banner-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 100,50 50,100 0,50" fill="%23ffffff" opacity="0.03"/></svg>') repeat;
    animation: slidePattern 30s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.contact-content-pro {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-title-pro {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-subtitle-pro {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-buttons-pro {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-primary-pro {
    padding: 18px 40px;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-pro:hover {
    background: #e53935;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-pro {
    padding: 18px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-pro:hover {
    background: white;
    color: #1a3c6e;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Advanced Loading Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.stagger-animation {
    animation-delay: calc(var(--index) * 0.1s);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .contact-title-pro {
        font-size: 2.2rem;
    }

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

    .btn-primary-pro,
    .btn-secondary-pro {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .area-grid-enhanced {
        grid-template-columns: 1fr;
    }
}

/* Enhanced FAQ Section Styles */
.enhanced-faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.enhanced-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></svg>') repeat;
    animation: subtle-move 30s linear infinite;
}

@keyframes subtle-move {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
}

.faq-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F5F0CD);
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.enhanced-accordion {
    position: relative;
    z-index: 2;
}

.enhanced-faq-card {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: none;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.enhanced-faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F5F0CD);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.enhanced-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.enhanced-faq-card:hover::before {
    transform: scaleX(1);
}

.enhanced-faq-header {
    background: transparent;
    border: none;
    padding: 0;
}

.enhanced-faq-button {
    width: 100%;
    padding: 30px 40px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

.enhanced-faq-button:hover,
.enhanced-faq-button:focus {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.enhanced-faq-button:not(.collapsed) {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
}

.question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #F5F0CD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.enhanced-faq-button:hover .question-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.question-text {
    flex-grow: 1;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.toggle-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #6c757d;
    flex-shrink: 0;
}

.enhanced-faq-button:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
    color: #D4AF37;
}

.enhanced-faq-collapse {
    border: none;
}

.enhanced-faq-body {
    padding: 0 40px 40px 40px;
    background: #ffffff;
}

.answer-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.answer-content p {
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.pricing-list,
.certification-list,
.service-list,
.response-list,
.warehouse-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-list li,
.certification-list li,
.service-list li,
.response-list li,
.warehouse-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-list li:last-child,
.certification-list li:last-child,
.service-list li:last-child,
.response-list li:last-child,
.warehouse-list li:last-child {
    border-bottom: none;
}

.pricing-list li::before,
.certification-list li::before,
.service-list li::before,
.response-list li::before,
.warehouse-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.pricing-list li:hover,
.certification-list li:hover,
.service-list li:hover,
.response-list li:hover,
.warehouse-list li:hover {
    background: rgba(212, 175, 55, 0.03);
    padding-left: 40px;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(245, 240, 205, 0.1));
    padding: 20px;
    border-left: 4px solid #D4AF37;
    border-radius: 0 10px 10px 0;
    font-weight: 500;
    color: #2c3e50;
    margin-top: 25px;
    position: relative;
}

.highlight-text::before {
    content: '💡';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
}

/* Advanced Accessibility Features */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Management */
*:focus {
    outline: 3px solid #D4AF37;
    outline-offset: 2px;
}

.enhanced-faq-button:focus {
    outline: 2px solid #D4AF37;
    outline-offset: -2px;
}

/* Responsive Design for FAQ */
@media (max-width: 992px) {
    .faq-main-title {
        font-size: 2.8rem;
    }

    .enhanced-faq-button {
        padding: 25px 30px;
        font-size: 1.1rem;
    }

    .enhanced-faq-body {
        padding: 0 30px 30px 30px;
    }
}

@media (max-width: 768px) {
    .enhanced-faq-section {
        padding: 80px 0;
    }

    .faq-main-title {
        font-size: 2.4rem;
    }

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

    .enhanced-faq-button {
        padding: 20px 25px;
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .question-icon {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .enhanced-faq-body {
        padding: 0 25px 25px 25px;
    }

    .answer-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .enhanced-faq-card {
        margin-bottom: 20px;
        border-radius: 15px;
    }

    .enhanced-faq-button {
        padding: 15px 20px;
    }

    .enhanced-faq-body {
        padding: 0 20px 20px 20px;
    }
}

/* Print Styles */
@media print {
    .hero-sec,
    .contact-banner-pro {
        background: white !important;
        color: black !important;
    }

    .feature-item {
        break-inside: avoid;
    }

    .enhanced-faq-section {
        background: white !important;
    }

    .enhanced-faq-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* Enhanced Security Features Section - Orange County Theme */
.security-features-enhanced {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8f3 0%, #fef7f0 50%, #fff8f3 100%);
    position: relative;
    overflow: hidden;
}

.security-features-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.features-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.features-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d2691e 0%, #ff6b35 50%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.features-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #8b4513;
    font-weight: 400;
    margin-bottom: 0;
    font-style: italic;
}

.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.feature-card-enhanced {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-enhanced:hover::before {
    transform: scaleX(1);
}

.feature-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon-wrapper {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.feature-icon-wrapper i {
    font-size: 22px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.feature-card-enhanced:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1rem;
    color: #6b4423;
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 400;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    position: relative;
    padding: 7px 0 7px 28px;
    color: #d2691e;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .security-features-enhanced {
        padding: 60px 0;
    }

    .features-header h2 {
        font-size: 2.2rem;
    }

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

    .features-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .feature-card-enhanced {
        padding: 30px 25px;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-icon-wrapper i {
        font-size: 20px;
    }

    .feature-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .features-header h2 {
        font-size: 1.8rem;
    }

    .feature-card-enhanced {
        padding: 25px 20px;
    }

    .feature-content h3 {
        font-size: 1.3rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }
}

/* Enhanced Security Features Section - Los Angeles Theme */
.security-features-enhanced.los-angeles-theme {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f2f7 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.security-features-enhanced.los-angeles-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066cc' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.los-angeles-theme .features-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 50%, #2196f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.los-angeles-theme .features-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #2196f3);
    border-radius: 2px;
}

.los-angeles-theme .features-subtitle {
    font-size: 1.2rem;
    color: #1565c0;
    font-weight: 400;
    margin-bottom: 0;
    font-style: italic;
}

.los-angeles-theme .feature-card-enhanced {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(33, 150, 243, 0.15);
    position: relative;
    overflow: hidden;
}

.los-angeles-theme .feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1976d2 0%, #2196f3 50%, #42a5f5 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.los-angeles-theme .feature-card-enhanced:hover::before {
    transform: scaleX(1);
}

.los-angeles-theme .feature-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.25);
    border-color: rgba(33, 150, 243, 0.3);
}

.los-angeles-theme .feature-icon-wrapper {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

.los-angeles-theme .feature-icon-wrapper i {
    font-size: 22px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.los-angeles-theme .feature-card-enhanced:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.4);
}

.los-angeles-theme .feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.los-angeles-theme .feature-content p {
    font-size: 1rem;
    color: #37474f;
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 400;
}

.los-angeles-theme .feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

/* Add any additional styles here */