/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* Note: If you have Machina BC font files, place them in /frontend/assets/fonts/ and uncomment below:
@font-face {
    font-family: 'Machina';
    src: url('../assets/fonts/Machina-Bold.woff2') format('woff2'),
         url('../assets/fonts/Machina-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
*/

:root {
    /* Primary Color Palette */
    --primary-blue: #1e40af;
    --primary-blue-dark: #1e3a8a;
    --accent-slate: #475569;

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f1f5f9;

    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #475569 100%);
    --gradient-secondary: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);

    /* Shadow Colors */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Page-Specific Accent Colors (defaults) */
    --page-accent: var(--primary-blue);
    --page-accent-dark: var(--primary-blue-dark);
    --page-gradient: var(--gradient-primary);
}

/* Dark Mode Colors */
body.dark-mode {
    /* Primary Color Palette - Adjusted for dark mode */
    --primary-blue: #60a5fa;
    --primary-blue-dark: #3b82f6;
    --accent-slate: #94a3b8;

    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-light: #94a3b8;

    /* Background Colors */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-accent: #334155;

    /* Border Colors */
    --border-light: #334155;
    --border-medium: #475569;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #60a5fa 0%, #94a3b8 100%);
    --gradient-secondary: linear-gradient(135deg, #1e293b 0%, #334155 100%);

    /* Shadow Colors - More subtle in dark mode */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
}

/* Dark Mode Page-Specific Accent Colors */
body.dark-mode.page-home {
    --page-accent: #60a5fa;
    --page-accent-dark: #3b82f6;
    --page-gradient: linear-gradient(135deg, #60a5fa 0%, #94a3b8 100%);
}

body.dark-mode.page-about {
    --page-accent: #22d3ee;
    --page-accent-dark: #06b6d4;
    --page-gradient: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
}

body.dark-mode.page-contact {
    --page-accent: #a78bfa;
    --page-accent-dark: #8b5cf6;
    --page-gradient: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

/* Home Page Accent Colors */
body.page-home {
    --page-accent: #1e40af;
    --page-accent-dark: #1e3a8a;
    --page-gradient: linear-gradient(135deg, #1e40af 0%, #475569 100%);
}

/* About Page Accent Colors */
body.page-about {
    --page-accent: #0891b2;
    --page-accent-dark: #0e7490;
    --page-gradient: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

/* Contact Page Accent Colors */
body.page-contact {
    --page-accent: #7c3aed;
    --page-accent-dark: #6d28d9;
    --page-gradient: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

/* Services Page Accent Colors */
body.page-services {
    --page-accent: #1e40af;
    --page-accent-dark: #1e3a8a;
    --page-gradient: linear-gradient(135deg, #1e40af 0%, #475569 100%);
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Global H1 Styling */
h1 {
    font-family: 'Orbitron', 'Source Sans Pro', sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* Navigation Styles */
nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 2rem;
    min-height: 100px;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    gap: 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-self: start;
}

.logo img {
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.company-name {
    font-family: 'Orbitron', 'Machina', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    white-space: nowrap;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    line-height: 1;
    justify-self: center;
    grid-column: 2;
}

.company-name:hover {
    color: var(--primary-blue-dark);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    justify-self: end;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
    background-color: var(--primary-blue-dark);
}

/* Hamburger animation when menu is open */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

nav ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-self: end;
}

nav ul li a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav ul li a:hover {
    color: var(--primary-blue);
    background-color: rgba(0, 123, 255, 0.05);
}

/* Hero Section Styles */
.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--bg-secondary);
    max-width: 600px;
}

/* Challenges Section Styles */
.challenges {
    padding: 4rem 2rem;
    background-color: var(--bg-secondary);
}

.challenges h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.challenge-card {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.challenge-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.challenge-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Market Research Section Styles */
.market-research {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.market-research::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #0056b3, var(--primary-blue));
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.market-research h2 {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.market-research h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.market-research-content {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-research-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 123, 255, 0.2),
                0 6px 16px rgba(0, 0, 0, 0.12);
}

.market-research-content::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 123, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.market-research-content p {
    font-size: 1.175rem;
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: left;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.market-research-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 123, 255, 0.1) 50%);
    background-size: 100% 200%;
    background-position: top;
}

.market-research-content a:hover {
    color: var(--primary-blue-dark);
    border-bottom: 2px solid var(--primary-blue-dark);
    background-position: bottom;
}

/* Statistic Highlights */
.stat-highlight {
    font-weight: 700;
    text-decoration: underline;
}

.stat-highlight.danger {
    color: #dc3545;
}

.stat-highlight.success {
    color: #28a745;
}

/* Pricing Section Styles */
.pricing {
    padding: 4rem 2rem;
    background-color: var(--bg-primary);
}

.pricing h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    align-items: start;
}

.pricing-card {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--border-light);
}

.pricing-badge.popular {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.15);
    transform: scale(1.02);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
}

.pricing-card .price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.pricing-card ul {
    list-style: none;
}

.pricing-card ul li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li::before {
    content: "✓ ";
    color: var(--primary-blue);
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.pricing-card ul li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* First Year Total Inline */
.first-year-total-inline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background-color: rgba(30, 64, 175, 0.05);
    border-radius: 6px;
    border-left: 3px solid var(--primary-blue);
}

/* View Details Button */
.view-details-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    margin-top: 1.5rem;
    background-color: transparent;
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background-color: var(--primary-blue);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.view-details-btn:active {
    transform: translateY(0);
}

/* Pricing Details Section */
.pricing-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-light);
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
    opacity: 1;
}

.pricing-details.collapsed {
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    opacity: 0;
    border-top: none;
}

.pricing-details p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-details ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: none;
    line-height: 1.6;
}

.pricing-details ul li::before {
    content: "• ";
    color: var(--primary-blue);
    font-weight: 700;
    margin-right: 0.5rem;
}

.first-year-total {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: var(--primary-blue) !important;
    margin-top: 1.5rem !important;
    padding: 1rem;
    background-color: rgba(30, 64, 175, 0.05);
    border-radius: 6px;
}

.perfect-for {
    font-size: 14px !important;
    font-style: italic;
    color: var(--text-light) !important;
    padding: 0.75rem;
    background-color: var(--bg-secondary);
    border-radius: 6px;
    border-left: 3px solid var(--primary-blue);
}

.device-info {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.device-info p {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.device-info ul {
    margin-bottom: 0;
}

.device-info ul li {
    font-size: 13px;
    padding: 0.6rem 0;
    line-height: 1.6;
}

.contact-cta {
    font-size: 1rem !important;
    color: var(--text-primary) !important;
    padding: 1rem;
    background-color: rgba(30, 64, 175, 0.05);
    border-radius: 6px;
    text-align: center;
    margin-top: 1rem !important;
}

/* Enterprise Section */
.enterprise-section {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.enterprise-content {
    text-align: center;
    color: var(--bg-primary);
}

.enterprise-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-primary);
    margin-bottom: 0.75rem;
}

.enterprise-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--bg-secondary);
    margin-bottom: 2.5rem;
}

.enterprise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.enterprise-col p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-primary);
    margin-bottom: 1rem;
}

.enterprise-col ul {
    list-style: none;
}

.enterprise-col ul li {
    font-size: 0.95rem;
    color: var(--bg-secondary);
    padding: 0.6rem 0;
    line-height: 1.6;
}

.enterprise-col ul li::before {
    content: "✓ ";
    color: var(--bg-primary);
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.enterprise-cta-btn {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background-color: var(--bg-primary);
    color: var(--primary-blue);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.enterprise-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-secondary);
}

.enterprise-cta-btn:active {
    transform: translateY(-1px);
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 2rem;
    background-color: var(--bg-secondary);
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
}

.faq-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.faq-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-blue);
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background-color: var(--primary-blue);
    transform: scale(1.1);
}

.faq-toggle:hover .faq-icon {
    color: var(--bg-primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-blue);
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.faq-toggle.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
    opacity: 1;
    margin-top: 1.5rem;
    padding-top: 0.5rem;
}

.faq-answer.collapsed {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    margin: 1.25rem 0;
    padding-left: 0;
}

.faq-answer ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer ul li::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.faq-answer ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Add-On Services Styles */
.addon-services {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 2px solid var(--border-light);
}

.addon-services h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.addon-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.addon-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.addon-card {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 0 1 340px;
    min-width: 300px;
    max-width: 380px;
}

.addon-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.addon-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.addon-card ul {
    list-style: none;
}

.addon-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 0.6rem 0;
    line-height: 1.6;
}

.addon-card ul li::before {
    content: "✓ ";
    color: var(--primary-blue);
    font-weight: 700;
    margin-right: 0.5rem;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Contact Section Styles */
.contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact > p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Info (Right Side) */
.contact-info {
    background-color: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

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

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
}

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

.contact-method h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-method p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-method small {
    font-size: 14px;
    color: var(--text-light);
}

.emergency-contact {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.emergency-contact h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-primary);
    margin-bottom: 0.5rem;
}

.emergency-contact p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 0.25rem;
}

.emergency-contact small {
    font-size: 14px;
    color: var(--bg-secondary);
}

/* Map Placeholder */
.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--gradient-secondary);
    border: 2px dashed var(--border-medium);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px),
        linear-gradient(var(--border-light) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.map-placeholder-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.map-placeholder-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.map-placeholder-icon svg {
    width: 32px;
    height: 32px;
}

.map-placeholder h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 300px;
    margin: 0 auto;
}

/* Contact Form (Left Side) */
.contact-form-expanded {
    background-color: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
}

/* Contact Form Section Styles */
.contact-form {
    padding: 4rem 2rem;
    background-color: var(--bg-secondary);
}

.contact-form h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: var(--bg-primary);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-medium);
    border-radius: 6px;
    font-size: 15px;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

button[type="submit"],
.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary-blue);
    color: var(--bg-primary);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

button[type="submit"]:hover,
.submit-btn:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

button[type="submit"]:active,
.submit-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* MeeterGo Scheduler Styles */
.scheduler-section {
    padding: 4rem 2rem;
    background-color: var(--bg-secondary);
}

.scheduler-section h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.scheduler-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.meetergo-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    background-color: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.meetergo-iframe {
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheduler-loading {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-secondary);
}

.scheduler-loading p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.scheduler-loading a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
}

.scheduler-loading a:hover {
    color: var(--primary-blue-dark);
}

.alternative-contact {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-secondary);
}

.alternative-contact a {
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.alternative-contact a:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* About Section Styles */
.about {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gradient-secondary);
    margin: -4rem -2rem 4rem -2rem;
    border-bottom: 2px solid var(--border-light);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
}

.about h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.about-intro {
    background: var(--gradient-secondary);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    text-align: center;
    border: 1px solid var(--border-light);
}

.about-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Company Story */
.about-story {
    margin-bottom: 4rem;
}

.about-story h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.about-story p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Company History Timeline */
.about-history {
    margin-bottom: 4rem;
}

.about-history h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-blue);
    z-index: 1;
    position: relative;
}

.timeline-content {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Mission Statement */
.about-mission {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 4rem 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-mission h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 1.5rem;
}

.about-mission p {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--bg-secondary);
}

/* Our Approach Grid */
.about-approach {
    margin-bottom: 4rem;
}

.about-approach h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.approach-item {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.approach-item h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.approach-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.about-team {
    margin-bottom: 4rem;
}

.about-team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.team-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.team-image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--bg-primary);
}

.team-image-placeholder svg {
    width: 60px;
    height: 60px;
}

.team-info {
    width: 100%;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Commitment Section */
.about-commitment {
    background-color: var(--bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

/* Services Page Styles */
.services-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--page-gradient);
    color: var(--bg-primary);
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.25rem;
    color: var(--bg-secondary);
    max-width: 700px;
}

.services-cta {
    padding: 4rem 2rem;
    background: var(--gradient-secondary);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--page-accent);
    color: var(--bg-primary);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: var(--page-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.about-commitment h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.about-commitment p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-commitment p:last-child {
    margin-bottom: 0;
}

/* Footer Styles */
footer {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 2rem;
    text-align: left;
}

.footer-section h3,
.footer-section h4 {
    color: var(--bg-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.125rem;
}

.footer-section p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    color: var(--text-light);
    font-size: 14px;
    padding: 0.25rem 0;
}

.footer-bottom {
    border-top: 1px solid var(--accent-slate);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}
