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

:root {
    /* Color Scheme - Yellow and Black Theme */
    --primary-color: #000000;
    --primary-dark: #000000;
    --primary-light: #333333;
    --secondary-color: #FFD700;
    --accent-color: #FFA500;
    --text-dark: #000000;
    --text-light: #333333;
    --bg-light: #ffffff;
    --bg-white: #FFFFFF;
    --border-color: #DDD;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #ffffff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    min-width: 100%;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    padding: 1.25rem 0;
    position: relative;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    gap: 12px;
    flex-shrink: 0;
}

.logo img,
.header-logo {
    height: 90px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.logo:hover {
    opacity: 0.9;
}

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

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.75rem 1rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .logo img,
    .header-logo {
        height: 80px;
    }
    
    .nav-wrapper {
        gap: 1.75rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .feature-card {
        padding: 1.5rem 0.75rem;
        min-height: 280px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .logo img,
    .header-logo {
        height: 70px;
    }
    
    .nav-wrapper {
        padding: 1rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.25rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.2px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Home link always bold and thick */
.nav-menu a[href="index.html"],
.nav-menu a[href="/"],
.nav-menu a[href="./index.html"] {
    font-weight: 700;
    font-size: 1rem;
}

/* Removed permanent Home underline - now only active page shows underline */

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle .arrow {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: 2px;
    font-size: 0.75rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border-radius: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 0.625rem 1.75rem;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-nav:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
}

.phone-number {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    transition: var(--transition);
    letter-spacing: 0.3px;
    display: inline-block;
    white-space: nowrap;
}

.phone-number:hover {
    color: var(--primary-light) !important;
}

/* Simple phone number links - bold black text (not in buttons) */
a[href^="tel:"]:not(.phone-number-btn):not(.btn-phone):not(.btn) {
    color: #000000 !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

a[href^="tel:"]:not(.phone-number-btn):not(.btn-phone):not(.btn):hover {
    color: #000000 !important;
    opacity: 0.8 !important;
    text-decoration: none !important;
}

/* Phone Number Button Style */
.phone-number-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.phone-number-btn:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: var(--primary-color) !important;
}

.phone-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.phone-icon-wrapper svg {
    width: 20px;
    height: 20px;
    stroke: var(--secondary-color);
    stroke-width: 2.5;
}

.phone-text-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.phone-text-wrapper > * {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.phone-text-wrapper .phone-label,
.phone-text-wrapper .phone-number {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    display: block !important;
}

.phone-label {
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    color: var(--primary-color) !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    display: block !important;
    height: auto !important;
    text-align: center !important;
}

.phone-number-btn .phone-number {
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    color: var(--primary-color) !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    display: block !important;
    height: auto !important;
    text-align: center !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    background: #1a1a1a;
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    color: var(--bg-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
    color: #f0f0f0;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 80px 0;
    width: 100%;
    max-width: 100vw;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

/* Features Section */
/* Professional Features Section */
.features-pro {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.features-pro-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.features-pro-badge {
    display: inline-block;
    background: #1a1a2e;
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.features-pro-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
    white-space: nowrap;
    display: inline-block;
}

.features-pro-header h2 span {
    color: #1a1a2e;
    position: relative;
}

.features-pro-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 215, 0, 0.4);
    z-index: -1;
}

.features-pro-header p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.features-pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.features-pro-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.features-pro-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.features-pro-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-pro-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-pro-card:hover .features-pro-img::after {
    opacity: 1;
}

.features-pro-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px;
    max-width: 100%;
    max-height: 100%;
}

.features-pro-card:hover .features-pro-img img {
    transform: scale(1.1);
}

.features-pro-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.features-pro-icon svg {
    width: 28px;
    height: 28px;
    stroke: #FFD700;
}

.features-pro-card:hover .features-pro-icon {
    transform: scale(1.1);
    border-radius: 16px;
}

.features-pro-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    padding: 0 20px;
    margin-top: 20px;
    letter-spacing: -0.02em;
}

.features-pro-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 0 20px;
}

.features-pro-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    color: #1a1a2e;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.05);
}

.features-pro-card:hover .features-pro-arrow {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #1a1a2e;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

@media (max-width: 1200px) {
    .features-pro-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 0 15px;
    }
    
    .features-pro-header h2 {
        font-size: 2.2rem;
        white-space: nowrap;
    }
}

@media (max-width: 992px) {
    .features-pro-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 0 10px;
    }
    
    .features-pro-card h3 {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .features-pro-card p {
        font-size: 0.8rem;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .features-pro {
        padding: 60px 0;
    }
    
    .features-pro-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        padding: 0 5px;
    }
    
    .features-pro-card h3 {
        font-size: 0.9rem;
        padding: 0 8px;
    }
    
    .features-pro-card p {
        font-size: 0.75rem;
        padding: 0 8px;
    }
    
    .features-pro-img {
        height: 160px;
    }
    
    .features-pro-header h2 {
        font-size: 1.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .features-pro-header h2 {
        font-size: 1.5rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .features-pro-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .features-pro-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

/* Legacy features - keeping for other pages */
.features {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    justify-items: center;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.3);
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 100%;
}

.feature-card .service-link {
    margin-top: auto;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.feature-card .service-link:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

.feature-card .service-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

/* Industries Slideshow */
.industries-slideshow-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.industries-slideshow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
}

.industries-slideshow-section .container {
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}

.industries-slideshow {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Industry-specific background images and fallback colors */
/* Uncomment the background-image lines below once you add the images to images/industries/ */
.slideshow-slide[data-industry="small-business"] .slide-background {
    background-image: url('../images/industries/small-business.jpg');
    background-color: #3a5f7a;
}

.slideshow-slide[data-industry="healthcare"] .slide-background {
    /* background-image: url('../images/industries/healthcare.jpg'); */
    background-color: #4a7c6a;
}

.slideshow-slide[data-industry="schools"] .slide-background {
    background-image: url('../images/industries/schools.jpg');
    background-color: #5a6a8a;
}

.slideshow-slide[data-industry="banks"] .slide-background {
    background-image: url('../images/industries/banks.jpg');
    background-color: #6a5a7a;
}

.slideshow-slide[data-industry="industrial"] .slide-background {
    background-image: url('../images/ChatGPT Image Dec 8, 2025, 01_31_43 PM.png');
    background-color: #0a1628;
    background-size: cover;
    background-position: center;
}

.slideshow-slide[data-industry="churches"] .slide-background {
    background-image: url('../images/industries/churches.jpg');
    background-color: #7a6a5a;
    background-size: cover;
    background-position: center top;
}

.slideshow-slide[data-industry="churches"] .slide-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.slideshow-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #1a1a2e;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.slideshow-nav:hover {
    background-color: #FFD700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.slideshow-prev {
    left: 30px;
}

.slideshow-next {
    right: 30px;
}

.slideshow-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slideshow-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slideshow-dots .dot.active {
    background-color: #FFD700;
    width: 28px;
    border-radius: 5px;
}

.slideshow-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .industries-slideshow {
        height: 400px;
    }
    
    .slide-content h3 {
        font-size: 2.5rem;
    }
    
    .slideshow-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slideshow-prev {
        left: 10px;
    }
    
    .slideshow-next {
        right: 10px;
    }
}

/* Combined Hero Section */
.hero-combined {
    background: #1a1a1a;
    padding: 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 100%;
}

.hero-combined-container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 580px;
}

.hero-combined-left {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 4rem 4rem 3rem;
    position: relative;
}

.hero-badge {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-badge-underline {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin-bottom: 2rem;
}

.hero-combined-content {
    max-width: 580px;
    text-align: left;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-trust-badge svg {
    color: var(--secondary-color);
}

.hero-trust-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-combined-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

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

.hero-combined-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.hero-combined-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-combined-buttons .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-combined-buttons .btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
}

.hero-combined-buttons .btn-primary:hover {
    background: #ffe033;
    transform: translateY(-2px);
}

.hero-combined-buttons .btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-combined-buttons .btn-outline-white:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-combined-buttons .btn-outline-white svg {
    stroke: #ffffff;
}

.hero-combined-buttons .btn-reviews {
    background: linear-gradient(135deg, #FFD700 0%, #ffed4e 100%);
    color: var(--primary-color);
    border: none;
    font-weight: 700;
}

.hero-combined-buttons .btn-reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c200 100%);
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero-btn-primary svg {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: transparent;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.hero-btn-secondary * {
    color: #ffffff !important;
}

.hero-btn-secondary svg {
    stroke: #ffffff !important;
    flex-shrink: 0;
}

.hero-btn-secondary:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color) !important;
    background: rgba(255, 215, 0, 0.1);
}

.hero-btn-secondary:hover * {
    color: var(--secondary-color) !important;
}

.hero-btn-secondary:hover svg {
    stroke: var(--secondary-color) !important;
}

.hero-badge {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-badge-underline {
    width: 60px;
    height: 3px;
    background: var(--bg-white);
    margin-bottom: 2rem;
}

.old-hero-combined-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.old-hero-combined-subtitle {
    font-size: 1.15rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-combined-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.hero-combined-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-phone:hover {
    background: var(--bg-white);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.hero-combined-right {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
}

/* Quote Split Section */
.quote-split-section {
    padding: 0;
    background: var(--bg-white);
}

.quote-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.quote-left-column {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

.quote-left-content {
    max-width: 500px;
    text-align: left;
}

.quote-value-heading {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.quote-value-underline {
    width: 60px;
    height: 3px;
    background: var(--bg-white);
    margin-bottom: 2rem;
}

.quote-main-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.btn-quote-call {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-quote-call:hover {
    background: var(--bg-white);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.quote-right-column {
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
}

.quote-form-header {
    background: #1a1a1a;
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
    margin-top: 2rem;
}

.quote-form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.quote-form-arrow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #1a1a1a;
}

.quote-form-content {
    flex: 1;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

.quote-form-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.quote-form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.quote-option-btn {
    padding: 1.25rem 2rem;
    background: #1a1a1a;
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.quote-option-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.quote-option-btn:active {
    transform: translateY(0);
}

/* Professional Quote Form */
.quote-form-pro {
    background: #1a1a1a;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.quote-form-inner {
    background: #1a1a1a;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 340px;
    box-shadow: none;
}

.quote-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quote-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c200 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.quote-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.quote-form-inner h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.quote-form-inner p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.quote-cta-btn-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c200 100%);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.quote-cta-btn-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.quote-cta-btn-pro svg {
    transition: transform 0.3s ease;
}

.quote-cta-btn-pro:hover svg {
    transform: translateX(4px);
}

.quote-trust-items {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.quote-trust-item svg {
    color: var(--secondary-color);
    stroke: var(--secondary-color);
}

/* Legacy Simple Quote Form */
.quote-form-simple {
    background: #000000;
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    position: relative;
}

.quote-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.quote-form-simple h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.quote-form-simple p {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 1.75rem;
    max-width: 260px;
    line-height: 1.5;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.quote-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #ffffff;
}

.quote-benefit svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.quote-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c200 100%);
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.35);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.quote-cta-btn svg {
    transition: transform 0.3s ease;
}

.quote-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffe033 0%, var(--secondary-color) 100%);
}

.quote-cta-btn:hover svg {
    transform: translateX(4px);
}

.quote-cta-btn:active {
    transform: translateY(0);
}

.quote-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6c200 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.quote-note {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

@media (max-width: 968px) {
    .hero-combined-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-combined-left {
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .hero-combined-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-badge {
        text-align: center;
        margin: 0 auto 0.5rem;
    }
    
    .hero-badge-underline {
        margin: 0 auto 2rem;
    }
    
    .hero-combined-title {
        font-size: 2.5rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-combined-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-combined-buttons {
        justify-content: center;
    }
    
    .quote-form-header {
        text-align: center;
    }
    
    .quote-form-content {
        text-align: center;
    }
    
    .quote-form-question {
        text-align: center;
    }
    
    .quote-split-container {
        grid-template-columns: 1fr;
    }
    
    .quote-left-column {
        padding: 3rem 2rem;
    }
    
    .quote-main-headline {
        font-size: 2rem;
    }
    
    .quote-form-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-combined {
        min-height: auto;
        padding: 0;
    }
    
    .hero-combined-container {
        min-height: auto;
    }
    
    .hero-combined-left {
        padding: 3rem 1.5rem;
        text-align: center;
    }
    
    .hero-combined-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-badge {
        text-align: center;
        margin: 0 auto 0.5rem;
    }
    
    .hero-badge-underline {
        margin: 0 auto 2rem;
    }
    
    .hero-combined-title {
        font-size: 2rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-combined-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .hero-combined-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .hero-combined-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-combined-right {
        padding: 0;
    }
    
    .quote-form-header {
        text-align: center;
        margin-top: 2rem;
    }
    
    .quote-form-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .quote-form-question {
        text-align: center;
    }
    
    .quote-form-buttons {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .quote-option-btn {
        text-align: center;
    }
    
    .quote-left-column {
        padding: 2.5rem 1.5rem;
    }
    
    .quote-main-headline {
        font-size: 1.75rem;
    }
    
    .quote-value-heading {
        font-size: 0.9rem;
    }
    
    .quote-form-header h3 {
        font-size: 1.1rem;
    }
    
    .quote-form-question {
        font-size: 1.1rem;
    }
}

/* Services Preview */
.services-preview {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-placeholder {
    font-size: 4rem;
    opacity: 0.8;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-light);
    margin-left: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    text-align: center;
    width: 100%;
    max-width: 100vw;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #fafafa;
    color: var(--text-dark);
    padding: 70px 0 30px;
    border-top: 1px solid #e5e5e5;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr 1fr;
    gap: 3rem;
    margin-bottom: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-transform: none;
}

.footer-column p {
    color: #666666;
    line-height: 1.8;
    font-size: 0.875rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #555555;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #000000;
}

/* Footer Logo Column */
.footer-logo-col {
    display: flex;
    flex-direction: column;
    padding-right: 1rem;
}

.footer-logo-col img {
    width: 110px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-logo-col > p {
    color: #555555;
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.footer-licenses {
    margin-top: auto;
}

.footer-licenses p {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    color: #444444;
    font-style: normal;
}

.footer-licenses strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Footer Contact Column */
.footer-column.footer-contact p:first-of-type {
    line-height: 1.7;
}

/* Footer phone numbers */
.footer-column a[href^="tel:"] {
    color: #1a1a1a !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 1rem;
    display: block;
    margin-top: 0.35rem;
    letter-spacing: 0.2px;
}

.footer-column a[href^="tel:"]:hover {
    color: var(--secondary-color) !important;
}

.footer-contact-label {
    font-weight: 500;
    color: #888888;
    font-size: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    color: #999999;
    font-size: 0.8rem;
    letter-spacing: 0.2px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .footer-logo-col {
        grid-column: span 3;
        margin-bottom: 1.5rem;
        padding-right: 0;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-logo-col {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-col {
        grid-column: span 1;
    }
    
    .footer-column h4 {
        margin-bottom: 1rem;
    }
}

/* Page Content Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    background-image: url('../images/home-security-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bg-white);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.home-security-header {
    background-image: url('../images/home-security-bg.png') !important;
}

.access-control-header {
    background-image: url('../images/Gemini_Generated_Image_yklzc0yklzc0yklz.png') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.home-camera-header {
    background-image: url('../images/industries/Gemini_Generated_Image_zhzvmczhzvmczhzv.png') !important;
    background-position: center center;
    background-size: cover;
}

/* Smart Home Technology page header */
.smart-home-header {
    background-image: url('../images/industries/Gemini_Generated_Image_d8epxnd8epxnd8ep.png') !important;
}

.intrusion-detection-header {
    background-image: url('../images/industries/Gemini_Generated_Image_qrjfw5qrjfw5qrjf.png') !important;
    background-position: center center;
    background-size: cover;
}

.video-surveillance-header {
    background-image: url('../images/Gemini_Generated_Image_sk16kpsk16kpsk16.png') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.specials-header {
    background-image: url('../images/ChatGPT Image Nov 24, 2025, 04_50_38 PM.png') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* Specials Page Content Styles */
.specials-content {
    padding: 4rem 0;
    background-color: #fafafa;
}

.specials-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.specials-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.specials-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.special-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
}

.special-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.special-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.special-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.special-card-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.special-card-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.specials-info {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e8e8e8;
}

.specials-info-section {
    padding: 0;
}

.specials-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.specials-info-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive adjustments for specials page */
@media (max-width: 1200px) {
    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .specials-content {
        padding: 3rem 0;
    }
    
    .specials-main-title {
        font-size: 2rem;
    }
    
    .specials-intro {
        margin-bottom: 3rem;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .special-card {
        padding: 2rem;
    }
    
    .specials-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2rem;
    }
}

.industries-header {
    background-image: url('../images/ChatGPT Image Nov 24, 2025, 02_41_00 PM.png') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* Industries Page Styles - Professional Clean */
.industries-intro-clean {
    text-align: center;
    padding: 3.5rem 2rem 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.industries-main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.industries-main-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
}

/* Industry Grid - Modern Cards */
.industries-modern-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 0 0 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.industry-modern-card {
    background: #fff;
    padding: 2rem 1.25rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.industry-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.industry-modern-card:hover .industry-modern-arrow {
    opacity: 1;
    transform: translateX(0);
}

.industry-modern-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-modern-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.industry-modern-card p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
    flex-grow: 1;
}

.industry-modern-arrow {
    margin-top: 1rem;
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .industries-modern-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .industries-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .industry-modern-card {
        padding: 1.5rem 1rem 1.25rem;
    }
    
    .industry-modern-icon {
        font-size: 2rem;
    }
    
    .industry-modern-card h3 {
        font-size: 0.9rem;
    }
    
    .industry-modern-card p {
        font-size: 0.75rem;
    }
}

/* Service Cards - Professional */
.industries-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 4rem 0;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    border-radius: 20px;
}

.service-card {
    background: white;
    padding: 2.25rem 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-card-divider {
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    margin: 0 auto 1rem;
}

.service-card-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #52525b;
    margin: 0;
}

/* Why Section - Professional */
.industries-why-section {
    background: var(--primary-color);
    padding: 4rem 2rem;
    border-radius: 16px;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.industries-why-section h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem;
    letter-spacing: -0.02em;
}

.industries-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.industries-why-item {
    text-align: center;
}

.industries-why-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.industries-why-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem;
}

.industries-why-item p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

@media (max-width: 968px) {
    .industries-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .industries-why-section {
        padding: 3rem 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .industries-why-section h2 {
        font-size: 1.5rem;
    }
    
    .industries-why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .industries-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .industries-services {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
    
    .monitoring-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .monitoring-text {
        padding-right: 0;
    }
    
    .monitoring-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .industries-monitoring {
        margin: 0 1rem 3rem;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .industries-intro-clean {
        padding: 3rem 1.5rem;
    }
    
    .industries-main-title {
        font-size: 1.875rem;
    }
    
    .industries-main-text {
        font-size: 1rem;
    }
    
    .industries-grid-clean {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem 3rem;
    }
    
    .industry-clean {
        padding: 1.5rem 1.25rem;
    }
    
    .industry-clean-title {
        font-size: 1.125rem;
    }
    
    .industry-clean-text {
        font-size: 0.9rem;
    }
    
    .industries-services {
        padding: 2.5rem 1rem;
        border-radius: 16px;
        margin: 0 1rem;
    }
    
    .service-card {
        padding: 1.75rem 1.5rem;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-card-title {
        font-size: 1.125rem;
    }
    
    .service-card-text {
        font-size: 0.9rem;
    }
    
    .industries-monitoring {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem 3rem;
        border-radius: 16px;
    }
    
    .monitoring-title {
        font-size: 1.375rem;
    }
    
    .monitoring-description {
        font-size: 0.9rem;
    }
    
    .monitoring-feature-icon {
        font-size: 1.75rem;
    }
    
    .monitoring-feature-title {
        font-size: 0.85rem;
    }
    
    .industries-bottom {
        padding: 3rem 1rem;
    }
    
    .industries-bottom-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .industries-bottom-title {
        font-size: 1.25rem;
    }
    
    .industries-bottom-text {
        font-size: 0.9rem;
    }
}

/* Video Surveillance Page Styles - Modern Typography Focus */
.video-hero-statement {
    padding: 4rem 0 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.video-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.video-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.video-features-modern {
    padding: 4rem 0;
    background: #fafafa;
}

.video-feature-modern {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 2.5rem 0;
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: 1px solid #e8e8e8;
}

.video-feature-modern:last-child {
    border-bottom: none;
}

.video-feature-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    opacity: 0.3;
    flex-shrink: 0;
    width: 80px;
    text-align: right;
}

.video-feature-content {
    flex: 1;
    padding-top: 0.5rem;
}

.video-feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.video-feature-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.video-business-modern {
    padding: 4rem 0;
    text-align: center;
}

.video-business-content {
    max-width: 900px;
    margin: 0 auto;
}

.video-section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.video-business-text-modern {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.video-cloud-modern {
    padding: 4rem 0;
    background: #fafafa;
}

.video-cloud-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.video-cloud-left {
    position: sticky;
    top: 2rem;
}

.video-cloud-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-cloud-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.video-monitoring-modern {
    padding: 4rem 0;
}

.video-monitoring-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.video-monitoring-intro-modern {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-monitoring-text-modern {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-benefit-box {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.video-benefit-box:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.video-benefit-box-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.video-benefit-box-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.video-benefit-box-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

@media (max-width: 968px) {
    .video-cloud-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-cloud-left {
        position: static;
    }
}

@media (max-width: 768px) {
    .video-hero-title {
        font-size: 2.25rem;
    }
    
    .video-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .video-feature-modern {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0;
    }
    
    .video-feature-number {
        font-size: 3rem;
        width: auto;
        text-align: left;
    }
    
    .video-feature-title {
        font-size: 1.5rem;
    }
    
    .video-feature-text {
        font-size: 1rem;
    }
    
    .video-section-title-modern {
        font-size: 2rem;
    }
    
    .video-business-text-modern {
        font-size: 1.1rem;
    }
    
    .video-cloud-text,
    .video-monitoring-intro-modern,
    .video-monitoring-text-modern {
        font-size: 1rem;
    }
    
    .video-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-benefit-box {
        padding: 1.5rem;
    }
    
    .video-benefit-box-title {
        font-size: 1.2rem;
    }
    
    .video-benefit-box-text {
        font-size: 1rem;
    }
    
    .video-hero-statement,
    .video-features-modern,
    .video-business-modern,
    .video-cloud-modern,
    .video-monitoring-modern {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Intrusion Detection Page Styles */
.intrusion-intro-section {
    text-align: center;
    padding: 4rem 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.intrusion-intro-content h2 {
    font-weight: 700;
    line-height: 1.2;
}

.intrusion-features-section {
    padding: 3rem 0;
}

.intrusion-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.intrusion-feature-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intrusion-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.intrusion-feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.intrusion-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.intrusion-feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Intrusion Detection Key Features */
.intrusion-key-features-section {
    padding: 4rem 0;
    background: #ffffff;
    margin: 3rem 0;
    border-radius: 30px;
}

.intrusion-key-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* APB Values Cards Section */
.apb-values-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 968px) {
    .apb-values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .apb-values-grid {
        grid-template-columns: 1fr !important;
    }
}

.intrusion-key-feature-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intrusion-key-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.intrusion-key-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.intrusion-key-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.intrusion-key-feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Securing People, Places & Profits Section */
.intrusion-securing-section {
    padding: 4rem 0;
    margin: 3rem 0;
}

.intrusion-securing-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intrusion-securing-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.intrusion-securing-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intrusion-securing-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.intrusion-securing-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.intrusion-securing-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.intrusion-securing-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* UL Listed Central Station Section */
.intrusion-monitoring-section {
    padding: 4rem 0;
    background: #ffffff;
    margin: 3rem 0;
    border-radius: 30px;
}

.intrusion-monitoring-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.intrusion-monitoring-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intrusion-monitoring-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intrusion-monitoring-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.intrusion-monitoring-image {
    position: relative;
}

.intrusion-monitoring-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intrusion-monitoring-feature {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.intrusion-monitoring-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.intrusion-monitoring-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.intrusion-monitoring-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .intrusion-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .intrusion-key-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intrusion-monitoring-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intrusion-monitoring-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .intrusion-intro-section {
        padding: 3rem 1rem 2rem;
    }
    
    .intrusion-intro-content h2 {
        font-size: 2rem;
    }
    
    .intrusion-intro-content h3 {
        font-size: 1.5rem;
    }
    
    .intrusion-intro-content p {
        font-size: 1.1rem;
    }
    
    .intrusion-features-section {
        padding: 2rem 0;
    }
    
    .intrusion-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intrusion-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .intrusion-key-features-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .intrusion-securing-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .intrusion-securing-content {
        padding: 2rem 1.5rem;
    }
    
    .intrusion-securing-content h2 {
        font-size: 1.8rem;
    }
    
    .intrusion-monitoring-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .intrusion-monitoring-wrapper {
        padding: 0 1rem 2rem;
    }
    
    .intrusion-monitoring-content h2 {
        font-size: 1.6rem;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.home-camera-header::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.support-header {
    background-image: url('../images/Gemini_Generated_Image_pdi533pdi533pdi5.png') !important;
    background-position: center bottom !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.support-header::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.15) 100%) !important;
}

/* Contact Page - Professional Design */
.contact-header {
    background-image: url('../images/Gemini_Generated_Image_pdi533pdi533pdi5.png') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.contact-header::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
}

.contact-intro-section {
    padding: 4rem 0 3rem;
    background: var(--bg-white);
}

.contact-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.contact-main-section {
    padding: 4rem 0;
    background: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 2.5rem;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FFC700 100%);
    border-radius: 12px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.contact-info-value a:hover {
    color: var(--secondary-color);
}

.contact-info-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-info-value p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0.5rem 0;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-intro-section {
        padding: 3rem 0 2rem;
    }
    
    .contact-intro-content h2 {
        font-size: 2rem;
    }
    
    .contact-intro-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .contact-main-section {
        padding: 3rem 0;
    }
    
    .contact-layout {
        padding: 0 1rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-header h2 {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-container h2 {
        font-size: 1.75rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin: 0 auto;
    }
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 400;
}

.page-content {
    padding: 4rem 0;
    background: #ffffff;
}

.content-section {
    margin-bottom: 3rem;
}

/* About page specific content styling */
.page-content .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    margin-top: 2rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }

    .nav-wrapper {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        order: 1;
        margin-right: auto;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        left: auto;
        flex-direction: column;
        flex-wrap: nowrap;
        background-color: var(--bg-white);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 1rem 0 120px;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9999;
    }

    .nav-menu.active {
        right: 0;
        left: auto;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-light);
        margin-top: 0;
        display: block;
        max-height: none;
    }
    
    .dropdown-menu li {
        padding: 0.25rem 0;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: 400px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
        text-align: center;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        min-height: 280px;
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .btn-nav {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .phone-number {
        font-size: 1rem !important;
    }
    
    .phone-number-btn {
        padding: 0.6rem 1rem;
        gap: 0.6rem;
    }
    
    .phone-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .phone-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }
    
    .phone-label {
        font-size: 0.7rem;
    }
    
    .phone-number-btn .phone-number {
        font-size: 1rem;
    }

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

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

@media (max-width: 480px) {
    .hero {
        background: #1a1a1a;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Chatbot Widget - Professional Modern Design */
.chatbot-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chatbot-window {
    display: none;
    width: 400px;
    height: 580px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.chatbot-window.active {
    display: flex;
    animation: chatWindowOpen 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.chatbot-header {
    background: #2a2a2a;
    color: #ffffff;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.chatbot-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-header-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    background: #FFD700;
    padding: 2px;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

.chatbot-message {
    max-width: 85%;
    padding: 0;
    border-radius: 16px;
    word-wrap: break-word;
    animation: messageSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.bot-message {
    background: #ffffff;
    color: #1e293b;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    border-radius: 4px 16px 16px 16px;
}

.user-message {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #1a1a2e;
    align-self: flex-end;
    font-weight: 500;
    border-radius: 16px 4px 16px 16px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    padding: 12px 16px !important;
}

.chatbot-message p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.925rem;
}

.chatbot-input-container {
    display: flex;
    padding: 16px 20px 20px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    gap: 12px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    outline: none;
    font-size: 0.925rem;
    transition: all 0.2s ease;
    background: #ffffff;
}

.chatbot-input:focus {
    border-color: #FFD700;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
}

.chatbot-input::placeholder {
    color: #94a3b8;
}

.chatbot-send {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border: none;
    border-radius: 14px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a1a2e;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.chatbot-send:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}

.chatbot-send:active {
    transform: scale(0.98);
}

.chatbot-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chatbot-toggle {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border: none;
    color: #1a1a2e;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.35), 0 0 0 4px rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 193, 7, 0.45), 0 0 0 4px rgba(255, 215, 0, 0.15);
}

.chatbot-toggle:active {
    transform: scale(1.02);
}

.chatbot-toggle.hidden {
    display: none;
}

.chatbot-loading {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #e2e8f0;
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Chatbot */
@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 32px);
        height: calc(100vh - 120px);
        max-height: 600px;
        border-radius: 20px;
    }
    
    .chatbot-container {
        bottom: 16px;
        right: 16px;
    }
    
    .chatbot-toggle {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }
    
    .chatbot-messages {
        padding: 16px;
    }
    
    .chatbot-input-container {
        padding: 12px 16px 16px;
    }
}

/* Interactive House Diagram */
.interactive-house-container {
    position: relative;
    margin: 3rem 0;
    min-height: 400px;
}

.house-diagram-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.house-diagram {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    min-height: 400px;
    max-height: 600px;
    object-fit: contain;
    background: #ffffff;
}

.house-placeholder {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.house-point {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.point-circle {
    width: 28px;
    height: 28px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
    animation: blink 2s infinite;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-circle::before {
    content: '+';
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.house-point:hover .point-circle {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(255, 204, 0, 0.5);
    animation: none;
}

.house-point.active .point-circle {
    background-color: #FFC700;
    transform: scale(1.5);
    box-shadow: 0 0 0 8px rgba(255, 204, 0, 0.6);
}

.house-point.active-point .point-circle {
    animation: pulse 1.5s infinite;
}

.house-point.active-point .point-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #FF8C00;
    animation: ripple 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3), 0 0 0 6px rgba(255, 140, 0, 0.2), 0 0 0 9px rgba(255, 140, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(255, 204, 0, 0.4), 0 0 0 10px rgba(255, 140, 0, 0.3), 0 0 0 15px rgba(255, 140, 0, 0.2);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.feature-description-panel {
    position: absolute;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.25rem;
    max-width: 260px;
    min-width: 200px;
    width: max-content;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    border: 2px solid var(--secondary-color);
    pointer-events: none;
    transform: translate(-50%, -120%) scale(0.95);
}

.feature-description-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -120%) scale(1);
}

.feature-description-panel h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.feature-description-panel p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.feature-description-panel h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-description-panel p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.close-panel {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
    z-index: 10;
}

.close-panel:hover {
    background: rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .feature-description-panel {
        position: absolute;
        bottom: auto;
        right: auto;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) scale(0.95) !important;
        max-width: 200px;
        min-width: 160px;
        padding: 1rem;
        border-radius: 10px;
    }
    
    .feature-description-panel.active {
        transform: translate(-50%, -50%) scale(1) !important;
    }
    
    .feature-description-panel h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-description-panel p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .close-panel {
        width: 24px;
        height: 24px;
        font-size: 1.2rem;
        top: 5px;
        right: 5px;
    }
    
    .house-point {
        width: 35px;
        height: 35px;
    }
    
    .point-circle {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .feature-description-panel {
        max-width: 160px;
        min-width: 140px;
        padding: 0.75rem;
    }
    
    .feature-description-panel h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .feature-description-panel p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .close-panel {
        width: 20px;
        height: 20px;
        font-size: 1rem;
        top: 4px;
        right: 4px;
    }
}

/* House Features Wrapper */
.house-features-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0;
    background: transparent;
}

/* Security Features Grid */
.security-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
    gap: 1rem;
    margin: 0;
    justify-content: center;
}

.security-feature-card {
    width: 200px;
    height: 200px;
}

.security-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 200px;
    justify-content: space-between;
}

.security-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 204, 0, 0.2);
}

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

.feature-icon-wrapper {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    flex-shrink: 0;
}

.security-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.security-feature-card h3 {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.2px;
    text-align: center;
    flex-shrink: 0;
}

.security-feature-card p {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.7rem;
    margin: 0;
    text-align: center;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

@media (max-width: 1024px) {
    .security-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .house-features-wrapper {
        padding: 0 1rem;
    }
    
    .security-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 180px));
        gap: 0.875rem;
    }
    
    .security-feature-card {
        width: 180px;
        height: 180px;
        padding: 0.875rem;
    }
    
    .feature-icon-wrapper {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .security-feature-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .security-feature-card p {
        font-size: 0.65rem;
    }
}

/* Wireless Section */
.wireless-section {
    margin: 4rem 0;
    padding: 4rem 0;
    background: #ffffff;
    border-radius: 20px;
}

.wireless-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.wireless-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 0 2rem;
}

/* Wireless Features Grid */
.wireless-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wireless-features-grid .feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    justify-content: center;
}

.wireless-features-grid .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wireless-features-grid .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.3);
}

.wireless-features-grid .feature-card:hover::before {
    transform: scaleX(1);
}

.wireless-features-grid .feature-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.wireless-features-grid .feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .wireless-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .wireless-section {
        margin: 3rem 0;
        padding: 2rem 0;
    }
    
    .wireless-section h2 {
        font-size: 2rem;
    }
    
    .wireless-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .wireless-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .wireless-features-grid .feature-card {
        min-height: 180px;
        padding: 1.5rem 1.25rem;
    }
    
    .wireless-features-grid .feature-card h3 {
        font-size: 1rem;
    }
    
    .wireless-features-grid .feature-card p {
        font-size: 0.9rem;
    }
}

/* Security Infographic Layout */
.infographic-layout {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.infographic-left {
    flex: 1;
    position: relative;
}

.infographic-container {
    position: relative;
    width: 100%;
    display: inline-block;
    overflow: visible;
}

.infographic-wrapper {
    position: relative;
    width: 100%;
    display: inline-block;
    overflow: visible;
}

.security-infographic {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.infographic-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.infographic-content {
    width: 100%;
}

.infographic-content h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
}

.infographic-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Interactive Points on Infographic */
.infographic-point {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.infographic-point .point-circle {
    width: 28px;
    height: 28px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
    animation: blink 2s infinite;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infographic-point .point-circle::before {
    content: '+';
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.infographic-point:hover .point-circle {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(255, 204, 0, 0.5);
    animation: none;
}

.infographic-point.active .point-circle {
    background-color: #FFC700;
    transform: scale(1.5);
    box-shadow: 0 0 0 8px rgba(255, 204, 0, 0.6);
}

@media (max-width: 1024px) {
    .infographic-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .infographic-left,
    .infographic-right {
        flex: 1;
        width: 100%;
    }
    
    .security-infographic {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .infographic-layout {
        padding: 0 1rem;
    }
    
    .security-infographic {
        border-radius: 8px;
    }
    
    .infographic-point {
        width: 35px;
        height: 35px;
    }
    
    .infographic-point .point-circle {
        width: 24px;
        height: 24px;
    }
    
    .infographic-point .point-circle::before {
        font-size: 16px;
    }
    
    .infographic-content h2 {
        font-size: 1.5rem;
    }
    
    .infographic-content p {
        font-size: 1rem;
    }
}

/* Smart Home Features */
.smart-features-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.smart-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.smart-feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.smart-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.3);
}

.smart-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.smart-feature-card:hover .smart-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.smart-feature-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.smart-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .smart-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .smart-features-section {
        padding: 2rem 0;
    }
    
    .smart-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .smart-feature-card {
        min-height: 240px;
        padding: 2rem 1.5rem;
    }
    
    .smart-feature-icon {
        font-size: 3rem;
    }
    
    .smart-feature-card h3 {
        font-size: 1.2rem;
    }
}

/* Advanced & Elegant Security Systems Section */
.security-systems-section {
    padding: 4rem 0;
    background: #ffffff;
}

.security-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.security-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.security-tab {
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.security-tab:hover {
    background: var(--bg-light);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.security-tab.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.security-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 300px;
}

.security-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.security-tab-content.active {
    display: block;
}

.content-with-image {
    overflow: hidden;
}

.content-with-image::after {
    content: '';
    display: table;
    clear: both;
}

.content-with-image p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.content-with-image img {
    display: block;
}

@media (max-width: 768px) {
    .security-systems-section {
        padding: 2rem 0;
    }
    
    .security-tabs {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .security-tab {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .security-content {
        padding: 2rem 1.5rem;
    }
    
    .content-with-image img {
        float: none !important;
        margin: 0 auto 1.5rem !important;
        display: block;
        max-width: 100% !important;
    }
}

/* Customize Your Home Experience Section */
.customize-section {
    background: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.customize-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.customize-content {
    position: relative;
    z-index: 2;
}

.customize-content h2,
.customize-content p,
.customize-content .phone-display a {
    color: var(--text-dark);
}

.customize-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.customize-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.phone-display {
    margin: 2rem 0;
}

.customize-form {
    background: white;
    padding: 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.recaptcha-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.recaptcha-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.recaptcha-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
}

.recaptcha-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recaptcha-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .customize-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .customize-content {
        text-align: center;
    }
    
    .phone-display {
        text-align: center;
    }
    
.dealer-badge {
    display: flex;
    justify-content: center;
}

.authorized-dealer-badge {
    display: flex;
    width: 100%;
    max-width: 500px;
    border: 4px solid var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.badge-left {
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
    flex: 0 0 33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    text-align: center;
}

.badge-text-small {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.badge-text-large {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-right {
    background: white;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem;
    gap: 0.5rem;
}

.control-text {
    color: #666;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.control-4-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.control-4-number {
    color: #dc3545;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.control-4-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.2rem;
    height: 2.2rem;
    border: 3px solid #dc3545;
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    z-index: -1;
}

.control-4-reg {
    position: absolute;
    top: -0.3rem;
    right: -0.5rem;
    font-size: 0.6rem;
    color: #999;
    font-weight: normal;
}

@media (max-width: 768px) {
    .authorized-dealer-badge {
        max-width: 100%;
    }
    
    .badge-left {
        padding: 1.25rem 0.75rem;
    }
    
    .badge-text-small {
        font-size: 0.75rem;
    }
    
    .badge-text-large {
        font-size: 1.25rem;
    }
    
    .control-text {
        font-size: 1.2rem;
    }
    
    .control-4-number {
        font-size: 1.75rem;
    }
}
}

@media (max-width: 768px) {
    .customize-section {
        padding: 3rem 0;
    }
    
    .customize-content h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .customize-form {
        padding: 2rem 1.5rem;
    }
}

/* Lighting & Energy Control Section */
.lighting-control-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-image: url('../images/industries/Gemini_Generated_Image_d8epxnd8epxnd8ep.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
    color: white;
    margin: 0;
}

.lighting-control-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.lighting-control-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.lighting-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.lighting-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.lighting-tab {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.lighting-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.lighting-tab.active {
    background: rgba(255, 204, 0, 0.2);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.lighting-tab.active::before {
    content: '💡';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
}

.lighting-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.tab-icon {
    font-size: 1.2rem;
}

.lighting-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

@media (max-width: 768px) {
    .lighting-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .lighting-tabs {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .lighting-tab {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .lighting-content {
        padding: 2rem 1.5rem;
    }
    
    .tab-content p {
        font-size: 1rem;
    }
}

/* Camera Intro Section */
.camera-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem 0;
}

.camera-intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.camera-intro-content h2 {
    color: var(--primary-color);
    text-align: left;
}

.camera-intro-content p {
    color: var(--text-dark);
    text-align: left;
}

.camera-intro-image {
    position: relative;
}

@media (max-width: 1024px) {
    .camera-intro-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .camera-intro-content h2,
    .camera-intro-content p {
        text-align: center;
    }
}

/* Camera Features Section */
.camera-features-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.camera-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.camera-feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
}

.camera-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.3);
}

.camera-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.camera-feature-card:hover .camera-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.camera-feature-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.camera-feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Camera Features List Section */
.camera-features-list-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 204, 0, 0.3);
}

@media (max-width: 1024px) {
    .camera-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .camera-features-section {
        padding: 2rem 0;
    }
    
    .camera-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .camera-feature-card {
        min-height: 260px;
        padding: 2rem 1.5rem;
    }
    
    .camera-feature-icon {
        font-size: 3rem;
    }
    
    .camera-feature-card h3 {
        font-size: 1.2rem;
    }
    
    .camera-features-list-section {
        padding: 2rem 0;
    }
    
    .features-list-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
}

/* HD Doorbell Cameras Section */
.doorbell-camera-section {
    background: #ffffff;
    padding: 4rem 0;
    margin: 4rem 0;
}

/* Indoor & Outdoor Cameras Section */
.indoor-outdoor-section {
    background: #ffffff;
    padding: 4rem 0;
    margin: 4rem 0;
}

.indoor-outdoor-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.indoor-outdoor-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.indoor-outdoor-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.indoor-outdoor-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.indoor-outdoor-content p:last-of-type {
    margin-bottom: 0;
}

.indoor-outdoor-image {
    position: relative;
}

@media (max-width: 1024px) {
    .indoor-outdoor-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .indoor-outdoor-content {
        text-align: center;
    }
    
    .indoor-outdoor-content h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .indoor-outdoor-section {
        padding: 3rem 0;
    }
    
    .indoor-outdoor-wrapper {
        padding: 0 1rem;
    }
}

.doorbell-camera-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.doorbell-camera-image {
    position: relative;
}

.doorbell-camera-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doorbell-camera-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.doorbell-camera-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .doorbell-camera-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .doorbell-camera-content {
        text-align: center;
    }
    
    .doorbell-camera-content h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .doorbell-camera-section {
        padding: 3rem 0;
    }
    
    .doorbell-camera-wrapper {
        padding: 0 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .chatbot-container {
        display: none;
    }
}

/* About Page - Modern Clean Design */
.about-intro-section {
    padding: 4rem 0 3rem;
    background: var(--bg-white);
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.about-stats-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-stat-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-content-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.about-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    text-align: center;
}

.about-content-card h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}

.about-content-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}

.about-licensing-section {
    padding: 4rem 0;
    background: #ffffff;
}

.about-licensing-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.about-licenses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-license-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.about-license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.license-state {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.license-number {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 968px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-licenses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-intro-section {
        padding: 3rem 0 2rem;
    }
    
    .about-intro-content h2 {
        font-size: 2rem;
    }
    
    .about-intro-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .about-stats-section {
        padding: 2.5rem 0;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .about-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .about-stat-label {
        font-size: 0.9rem;
    }
    
    .about-content-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-card-icon {
        font-size: 2.5rem;
    }
    
    .about-content-card h3 {
        font-size: 1.5rem;
    }
    
    .about-content-card p {
        font-size: 1rem;
    }
    
    .about-licensing-section {
        padding: 3rem 0;
    }
    
    .about-licensing-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .about-licenses-grid {
        padding: 0 1rem;
    }
    
    .about-license-card {
        padding: 2rem 1.5rem;
    }
}

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

/* Support Page - Professional Design */
.support-intro-section {
    padding: 4rem 0 3rem;
    background: var(--bg-white);
}

.support-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.support-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.support-intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.support-services-section {
    padding: 4rem 0;
    background: #ffffff;
}

.support-section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.support-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-service-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.support-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.support-service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.support-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.support-service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.support-contact-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.support-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

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

.support-contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-info {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.support-topics-section {
    padding: 4rem 0;
    background: #ffffff;
}

.support-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-topic-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.support-topic-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.support-topic-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.support-topic-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.support-resources-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.support-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-resource-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.support-resource-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.support-resource-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.support-resource-card .btn {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .support-services-grid,
    .support-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .support-intro-section {
        padding: 3rem 0 2rem;
    }
    
    .support-intro-content h2 {
        font-size: 2rem;
    }
    
    .support-intro-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .support-services-section,
    .support-contact-section,
    .support-topics-section,
    .support-resources-section {
        padding: 3rem 0;
    }
    
    .support-section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .support-services-grid,
    .support-contact-grid,
    .support-topics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .support-service-card,
    .support-contact-card {
        padding: 2rem 1.5rem;
    }
    
    .support-resources-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .support-resource-card {
        padding: 2.5rem 2rem;
    }
}

/* Home Security Systems Page - Professional Design */
.home-security-intro-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.home-security-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.home-security-intro-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.intro-cta {
    margin-top: 3rem;
}

.interactive-tour-header {
    text-align: center;
    margin: 4rem 0 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.interactive-tour-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.interactive-tour-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.home-security-monitoring-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    margin: 4rem 0;
    border-radius: 20px;
}

.monitoring-content-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
    padding: 0 2rem;
}

.monitoring-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.monitoring-content-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.monitoring-content-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.monitoring-cta {
    margin-top: 2rem;
}

.home-security-protect-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.protect-content-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.protect-content-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.protect-content-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.protect-phone {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
}

.phone-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.phone-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.phone-display:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .home-security-intro-section {
        padding: 3rem 0;
    }
    
    .home-security-intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .interactive-tour-header {
        padding: 0 1rem;
        margin: 3rem 0 2rem;
    }
    
    .interactive-tour-header h2 {
        font-size: 2rem;
    }
    
    .interactive-tour-header p {
        font-size: 1.1rem;
    }
    
    .home-security-monitoring-section {
        padding: 3rem 0;
        margin: 3rem 0;
        border-radius: 0;
    }
    
    .monitoring-content-card {
        padding: 0 1rem;
    }
    
    .monitoring-content-card h2 {
        font-size: 2rem;
    }
    
    .monitoring-content-card p {
        font-size: 1.1rem;
    }
    
    .home-security-protect-section {
        padding: 3rem 0;
    }
    
    .protect-content-card {
        padding: 2rem 1.5rem;
    }
    
    .protect-content-card h2 {
        font-size: 2rem;
    }
    
    .protect-content-card p {
        font-size: 1.1rem;
    }
    
    .phone-display {
        font-size: 2rem;
    }
}

/* Access Control Page - Clean Compact Design */
.access-intro {
    text-align: center;
    padding: 3rem 0 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.access-intro h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.access-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Solutions - Simple List */
.access-solutions {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.access-solution {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.access-solution:last-child {
    border-bottom: none;
}

.access-solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.access-icon {
    font-size: 1.5rem;
}

.access-solution h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.access-solution p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    padding-left: 2.5rem;
}

/* Features - Two Column Grid */
.access-features {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem 0;
}

.access-features h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.access-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.access-feature-item {
    font-size: 1.05rem;
    color: var(--text-light);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.access-feature-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Applications */
.access-applications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.access-app {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.access-app h4 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.access-app p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Support */
.access-support {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.access-support h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.access-support p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .access-intro {
        padding: 2rem 1rem 1.5rem;
    }
    
    .access-intro h2 {
        font-size: 1.75rem;
    }
    
    .access-solutions {
        padding: 0 1rem;
    }
    
    .access-solution p {
        padding-left: 0;
        margin-top: 0.5rem;
    }
    
    .access-features-grid {
        grid-template-columns: 1fr;
    }
    
    .access-applications {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

