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

/* Custom Color Properties */
:root {
    --blue-color: #3b82f6;
    --blue-rgb: 59, 130, 246;
    --emerald-color: #10b981;
    --emerald-rgb: 16, 185, 129;
    --purple-color: #8b5cf6;
    --purple-rgb: 139, 92, 246;
    --aruba-orange-color: #FF6600;
    --aruba-orange-rgb: 255, 102, 0;
    --engenius-black-color: #1a1a1a;
    --engenius-black-rgb: 26, 26, 26;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark Mode */
body.dark {
    color: #f9fafb;
    background-color: #111827;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background-color 0.3s ease;
}

.dark .header {
    background-color: #111827;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.95;
}

.logo-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    object-fit: contain;
    background-color: #ffffff;
    padding: 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.dark .logo-img {
    background-color: #374151;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
}

.dark .logo-text h1 {
    color: #ffffff;
}

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link.active {
    color: #3b82f6;
    border-bottom: 2px solid #3b82f6;
}

.dark .nav-link {
    color: #ffffff;
}

.dark .nav-link:hover {
    color: #3b82f6;
}

.dark .nav-link.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

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

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1.125rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

.dropdown-trigger:hover {
    color: #3b82f6;
    transform: scale(1.05);
}

.dark .dropdown-trigger {
    color: #ffffff;
}

.dark .dropdown-trigger:hover {
    color: #3b82f6;
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

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

.dark .dropdown-content {
    background-color: #374151;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    transform: scale(1);
}

.dropdown-content a:hover {
    background-color: #3b82f6;
    color: #ffffff;
    transform: scale(1.05);
}

.dark .dropdown-content a {
    color: #ffffff;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.theme-toggle:hover {
    background-color: #f3f4f6;
}

.dark .theme-toggle:hover {
    background-color: #374151;
}

.theme-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #374151;
}

.dark .theme-icon {
    color: #ffffff;
}

/* Mobile Navigation */
.nav-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none;
    }
}

.mobile-menu-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #374151;
}

.dark .mobile-menu-btn {
    color: #ffffff;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    position: fixed;
    top: 4rem;
    right: 0;
    width: 16rem;
    background-color: #ffffff;
    box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 40;
    height: calc(100vh - 4rem);
}

.mobile-menu.open {
    transform: translateX(0);
}

.dark .mobile-menu {
    background-color: #111827;
}

.mobile-menu-content {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0;
    text-align: left;
}

.dark .mobile-nav-link {
    color: #ffffff;
}

.mobile-tech-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.dark .mobile-tech-section {
    border-top-color: #374151;
}

.mobile-tech-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.dark .mobile-tech-title {
    color: #9ca3af;
}

.mobile-tech-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
}

.dark .mobile-tech-link {
    color: #ffffff;
}

.mobile-tech-link:hover {
    color: #3b82f6;
}

/* Main Content */
#main-content {
    min-height: calc(100vh - 4rem);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 20px 20px;
}

.hero-content {
    position: relative;
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    color: #93c5fd;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.hero-badge i {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Hero Main Logo */
.hero-main-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-logo-img {
    width: 8rem;
    height: 8rem;
    border-radius: 1rem;
    object-fit: contain;
    background-color: #ffffff;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-accent {
    display: block;
    color: #60a5fa;
}

.hero-description {
    font-size: 1.25rem;
    color: #e5e7eb;
    line-height: 1.6;
    font-weight: 500;
    max-width: 32rem;
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.hero-image {
    position: relative;
}

.hero-image-container {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-badge-live {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background-color: #10b981;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.dark .services-section {
    background-color: #111827;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.dark .section-title {
    color: #ffffff;
}

.section-description {
    font-size: 1.25rem;
    color: #374151;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

.dark .section-description {
    color: #e5e7eb;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    transform: scale(1);
}

.service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.dark .service-card {
    background-color: #374151;
    border-color: #4b5563;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.service-icon img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    border-radius: 0.5rem;
}

.service-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.service-icon.emerald {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.service-icon.gray {
    background: linear-gradient(135deg, #374151, #1f2937);
}

.service-icon.aruba-orange {
    background: linear-gradient(135deg, #FF6600, #E55A00);
}

.service-icon.engenius-black {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

/* Feature Icon Colors for Technology Pages */
.feature-icon.aruba-orange {
    background: linear-gradient(135deg, #FF6600, #E55A00);
}

.feature-icon.engenius-black {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

/* Technology Logo Styles */
.service-logo {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    background-color: #ffffff;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dark .service-logo {
    background-color: #374151;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-logo {
    transform: scale(1.1);
}

.tech-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.dark .service-title {
    color: #ffffff;
}

.service-description {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.dark .service-description {
    color: #e5e7eb;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-feature {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

.dark .service-feature {
    color: #e5e7eb;
}

.service-feature i {
    width: 1rem;
    height: 1rem;
    color: #10b981;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.service-link.blue {
    color: #3b82f6;
}

.service-link.blue:hover {
    color: #1d4ed8;
}

.service-link:hover {
    color: #1d4ed8;
    transform: translateX(0.25rem);
}

.service-link.emerald {
    color: #10b981;
}

.service-link.emerald:hover {
    color: #059669;
}

.service-link.purple {
    color: #8b5cf6;
}

.service-link.purple:hover {
    color: #7c3aed;
}

.service-link.orange {
    color: #f97316;
}

.service-link.orange:hover {
    color: #ea580c;
}

.service-link.gray {
    color: #374151;
}

.service-link.gray:hover {
    color: #1f2937;
}

.service-link.aruba-orange {
    color: #FF6600;
}

.service-link.aruba-orange:hover {
    color: #E55A00;
}

.service-link.engenius-black {
    color: #1a1a1a;
}

.service-link.engenius-black:hover {
    color: #000000;
}

.service-link i {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
}

/* Additional Services Grid */
.additional-services {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .additional-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Technologies Showcase Section */
.technologies-showcase {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.dark .technologies-showcase {
    background-color: #1f2937;
}

.technologies-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .technologies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .technologies-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.technology-item {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.dark .technology-item {
    background-color: #374151;
    border-color: #4b5563;
}

.technology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.technology-logo {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    border-radius: 0.5rem;
    background-color: #ffffff;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dark .technology-logo {
    background-color: #4b5563;
}

.technology-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.dark .technology-item h3 {
    color: #ffffff;
}

.technology-item p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.dark .technology-item p {
    color: #d1d5db;
}

/* Themed Technology Items */
.technology-item.aruba-theme {
    border-left: 4px solid #FF6600;
}

.technology-item.aruba-theme:hover {
    border-left-color: #E55A00;
}

.technology-item.engenius-theme {
    border-left: 4px solid #1a1a1a;
}

.technology-item.engenius-theme:hover {
    border-left-color: #000000;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.dark .map-section {
    background-color: #1f2937;
}

.map-container {
    margin-bottom: 2rem;
}

.map-info {
    display: flex;
    justify-content: center;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 48rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.dark .map-info-item {
    background-color: #374151;
    border-color: #4b5563;
}

.map-info-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #3b82f6;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.map-info-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.dark .map-info-item h4 {
    color: #ffffff;
}

.map-info-item p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dark .map-info-item p {
    color: #d1d5db;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #1d4ed8;
}

.map-link i {
    width: 1rem;
    height: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(90deg, #111827, #374151);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.stat-number.blue {
    color: #60a5fa;
}

.stat-number.emerald {
    color: #34d399;
}

.stat-number.purple {
    color: #a78bfa;
}

.stat-number.cyan {
    color: #22d3ee;
}

.stat-label {
    color: #d1d5db;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.dark .features-section {
    background-color: #111827;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

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

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

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.dark .feature-title {
    color: #ffffff;
}

.feature-description {
    color: #6b7280;
}

.dark .feature-description {
    color: #d1d5db;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.dark .faq-section {
    background-color: #1f2937;
}

.faq-container {
    max-width: 4xl;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.dark .faq-item {
    border-bottom-color: #374151;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    padding: 0;
}

.dark .faq-question {
    color: #ffffff;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding-top: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.dark .faq-answer-content {
    color: #d1d5db;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.cta-content {
    max-width: 4xl;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #2563eb;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #111827;
    color: #ffffff;
    padding: 4rem 0;
    transition: background-color 0.3s ease;
}

.dark .footer {
    background-color: #030712;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    object-fit: contain;
    background-color: #ffffff;
    padding: 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.4);
}

.dark .footer-logo-img {
    background-color: #374151;
}

.footer-logo h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.dark .footer-logo h3 {
    color: #ffffff;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.dark .footer-description {
    color: #9ca3af;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-links a:hover {
    color: #ffffff;
}

.dark .footer-links a {
    color: #9ca3af;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #d1d5db;
}

.dark .contact-info {
    color: #9ca3af;
}

.contact-info a {
    color: #d1d5db;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-info a:hover {
    color: #ffffff;
}

.dark .contact-info a {
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.dark .footer-bottom {
    border-top-color: #4b5563;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-toggle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: scale(1);
}

.chat-toggle:hover {
    background-color: #1d4ed8;
    transform: scale(1.1);
}

.chat-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.chat-window {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    width: 20rem;
    height: 24rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: none;
    flex-direction: column;
}

.chat-window.open {
    display: flex;
}

.dark .chat-window {
    background-color: #374151;
    border-color: #4b5563;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.dark .chat-header {
    border-bottom-color: #4b5563;
}

.chat-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.dark .chat-header h3 {
    color: #ffffff;
}

.chat-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 0.25rem;
}

.dark .chat-close {
    color: #9ca3af;
}

.close-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1rem;
}

.bot-message {
    background-color: #f3f4f6;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #374151;
}

.dark .bot-message {
    background-color: #4b5563;
    color: #e5e7eb;
}

.user-message {
    background-color: #2563eb;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #ffffff;
    margin-left: 2rem;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    gap: 0.5rem;
}

.dark .chat-input {
    border-top-color: #4b5563;
}

#chat-input-field {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.dark #chat-input-field {
    background-color: #4b5563;
    border-color: #6b7280;
    color: #ffffff;
}

.chat-send-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chat-send-btn:hover {
    background-color: #1d4ed8;
}

.send-icon {
    width: 1rem;
    height: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Utility Classes */
.hidden {
    display: none;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.invisible {
    opacity: 0;
    transform: translateY(10px);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.dark .notification {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.notification-content i {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.notification-success .notification-content i {
    color: #10b981;
}

.notification-error .notification-content i {
    color: #ef4444;
}

.notification-info .notification-content i {
    color: #3b82f6;
}

.notification-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.notification-close:hover {
    background: #f3f4f6;
}

.dark .notification-close:hover {
    background: #4b5563;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

.dark ::-webkit-scrollbar-track {
    background: #374151;
}

.dark ::-webkit-scrollbar-thumb {
    background: #10b981;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .chat-window {
        width: calc(100vw - 2rem);
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .services-section,
    .features-section,
    .faq-section,
    .cta-section {
        padding: 4rem 0;
    }
}
