/* ================================================
   GLOBAL STYLES & VARIABLES
   ================================================ */

:root {
    /* Light Mode */
    --primary-color: #ef2b2b;
    --secondary-color: #000000;
    --accent-color: #ff5757;
    --light-bg: #f5f5f5;
    --grey-bg: #e8e8e8;
    --text-dark: #000000;
    --text-light: #333333;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Dark Mode */
body.dark-mode {
    --primary-color: #ff4444;
    --secondary-color: #ffffff;
    --accent-color: #ff6666;
    --light-bg: #1a1a1a;
    --grey-bg: #2d2d2d;
    --text-dark: #ffffff;
    --text-light: #cccccc;
    --white: #0f0f0f;
    --shadow: 0 4px 6px rgba(255, 255, 255, 0.05);
    --shadow-lg: 0 10px 20px rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* ================================================
   CONTAINER
   ================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--grey-bg);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
    margin-bottom: 10px;
}

.btn i {
    margin-right: 8px;
}

/* ================================================
   STICKY BUTTONS
   ================================================ */

.sticky-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-btn.whatsapp {
    background-color: #25d366;
}

.sticky-btn.whatsapp:hover {
    background-color: #1fa857;
    transform: scale(1.1);
}

.sticky-btn.call {
    background-color: var(--primary-color);
}

.sticky-btn.call:hover {
    background-color: #1d4ed8;
    transform: scale(1.1);
}

/* ================================================
   NAVIGATION
   ================================================ */

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu .cta-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu .cta-btn:hover {
    background-color: var(--accent-color);
}

/* ================================================
   THEME TOGGLE BUTTON
   ================================================ */

.theme-toggle {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.theme-toggle:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, #dbeafe 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trust-badge {
    display: inline-block;
    background-color: #dcfce7;
    color: #166534;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 20px;
}

.trust-badge i {
    margin-right: 8px;
    color: #22c55e;
}

/* ================================================
   SERVICES SECTION
   ================================================ */

.services {
    padding: 80px 0;
    background-color: var(--white);
}

.services h2 {
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.service-link:hover {
    color: #1d4ed8;
}

/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */

.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.95rem;
}

/* ================================================
   SERVICE AREAS SECTION
   ================================================ */

.service-areas {
    padding: 80px 0;
    background-color: var(--white);
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 15px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.area-category {
    background: linear-gradient(135deg, var(--light-bg), var(--grey-bg));
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.area-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.area-category h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.area-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-item {
    background-color: var(--white);
    padding: 12px 15px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(239, 43, 43, 0.2);
}

.area-item i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.area-item:hover i {
    color: var(--white);
}

.area-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

.areas-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 30px;
    font-size: 0.95rem;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */

.testimonials {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* ================================================
   PAGE HEADER
   ================================================ */

.page-header {
    background: linear-gradient(135deg, var(--light-bg) 0%, #dbeafe 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ================================================
   SERVICE DETAILS
   ================================================ */

.service-details {
    padding: 60px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.details-main h2 {
    margin-bottom: 20px;
}

.details-main > p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.details-main h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-light);
    padding-left: 30px;
    position: relative;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list i {
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list li {
    padding: 10px 0;
    color: var(--text-light);
    padding-left: 30px;
    position: relative;
}

.benefits-list i {
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.step {
    text-align: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.step:hover {
    background-color: #dbeafe;
    transform: translateY(-3px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 10px;
}

.step h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.solutions-cards,
.camera-types,
.devices-grid,
.voice-options,
.software-categories,
.benefit-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0 30px 0;
}

.solution-card,
.camera-card,
.device-card,
.voice-card,
.category,
.benefit-item {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.solution-card:hover,
.camera-card:hover,
.device-card:hover,
.voice-card:hover,
.category:hover,
.benefit-item:hover {
    background-color: #dbeafe;
    transform: translateY(-3px);
}

.solution-card h4,
.camera-card h4,
.device-card h4,
.voice-card h4,
.category h4,
.benefit-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.solution-card p,
.camera-card p,
.device-card p,
.voice-card p,
.category p,
.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ================================================
   SIDEBAR
   ================================================ */

.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.sidebar-box.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: var(--white);
}

.sidebar-box.highlight h3 {
    color: var(--white);
}

.sidebar-box.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-box h3 {
    margin-bottom: 15px;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box ul li {
    padding: 8px 0;
    color: var(--text-light);
}

.sidebar-box ul li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

.sidebar-box.highlight ul li:before {
    color: #fbbf24;
}

/* ================================================
   FORMS
   ================================================ */

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-box h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* ================================================
   CONTACT INFO
   ================================================ */

.contact-info-box h2 {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-method:last-of-type {
    border-bottom: none;
}

.method-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.method-details h3 {
    margin-bottom: 8px;
}

.method-details a {
    font-weight: 600;
    display: inline-block;
}

.method-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ================================================
   MAP SECTION
   ================================================ */

.map-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ================================================
   FAQ
   ================================================ */

.faq {
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #dbeafe;
    transform: translateY(-3px);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-section {
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.values-list {
    list-style: none;
    margin-bottom: 20px;
}

.values-list li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid #e2e8f0;
}

.values-list li strong {
    color: var(--primary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ================================================
   PROCESS SECTION
   ================================================ */

.process-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.process-arrow {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* ================================================
   AREAS MAP
   ================================================ */

.areas-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.area-column h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.area-column ul {
    list-style: none;
}

.area-column ul li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid #e2e8f0;
}

.area-column ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ================================================
   SERVICE SECTIONS (FULL PAGE)
   ================================================ */

.services-full {
    padding: 60px 0;
}

.service-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-header h2 {
    margin: 0;
}

.service-content h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    padding: 10px 0;
    color: var(--text-light);
    padding-left: 30px;
    position: relative;
}

.service-list i {
    position: absolute;
    left: 0;
    color: #22c55e;
}

.service-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.service-cta a {
    margin-right: 20px;
    font-weight: 600;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.tip {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.tip h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.tip p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.storage-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.option {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.option h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.option p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .theme-toggle {
        margin-left: 10px;
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .nav-menu {
        position: absolute;
        left: 0;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }

    .process-arrow {
        display: none;
    }

    .areas-map {
        grid-template-columns: 1fr;
    }

    .sticky-buttons {
        right: 10px;
        bottom: 60px;
        flex-direction: row;
        gap: 5px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .services h2,
    .testimonials h2,
    .why-choose-us h2,
    .service-areas h2,
    .faq h2 {
        font-size: 1.5rem;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .sticky-buttons {
        right: 8px;
        bottom: 50px;
    }

    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .solutions-cards,
    .camera-types,
    .devices-grid,
    .voice-options,
    .software-categories,
    .benefit-item,
    .storage-options,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 30px;
    }

    .map-container {
        height: 250px;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }
}

/* ================================================
   ANIMATIONS & KEYFRAMES
   ================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Apply animations to homepage elements */
.hero {
    animation: slideInDown 0.8s ease-out;
}

.hero-content h1 {
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-description {
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: slideInUp 1s ease-out 0.8s both;
}

.trust-badge {
    animation: slideInUp 1s ease-out 1s both;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    animation: none;
    transform: translateY(-3px);
}

.btn-primary:hover {
    box-shadow: 0 8px 20px rgba(239, 43, 43, 0.3);
}

.service-card {
    animation: slideInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.service-card:hover {
    animation: none;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    animation: bounce 2s infinite;
}

.features-grid > div {
    animation: slideInUp 0.8s ease-out;
}

.features-grid > div:nth-child(1) { animation-delay: 0.1s; }
.features-grid > div:nth-child(2) { animation-delay: 0.2s; }
.features-grid > div:nth-child(3) { animation-delay: 0.3s; }
.features-grid > div:nth-child(4) { animation-delay: 0.4s; }
.features-grid > div:nth-child(5) { animation-delay: 0.5s; }
.features-grid > div:nth-child(6) { animation-delay: 0.6s; }

.testimonial-card {
    animation: slideInUp 0.8s ease-out;
}

.testimonial-card:hover {
    animation: none;
    transform: scale(1.05);
}

.service-areas-grid > div {
    animation: scaleIn 0.8s ease-out;
}

.service-areas-grid > div:nth-child(1) { animation-delay: 0.1s; }
.service-areas-grid > div:nth-child(2) { animation-delay: 0.2s; }
.service-areas-grid > div:nth-child(3) { animation-delay: 0.3s; }
.service-areas-grid > div:nth-child(4) { animation-delay: 0.4s; }
.service-areas-grid > div:nth-child(5) { animation-delay: 0.5s; }
.service-areas-grid > div:nth-child(6) { animation-delay: 0.6s; }

/* Scroll animations */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.slide-up {
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Theme toggle button specific styles */
.theme-toggle {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 4px 15px rgba(239, 43, 43, 0.2);
}

.theme-toggle:hover {
    box-shadow: 0 6px 20px rgba(239, 43, 43, 0.3);
}

.theme-toggle i {
    display: inline-block;
    margin-right: 6px;
}

body.dark-mode .theme-toggle {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

