/* Global Styles - Mobile First Approach */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #D32F2F;
    --primary-dark: #B71C1C;
    --secondary-blue: #1976D2;
    --dark-gray: #212121;
    --medium-gray: #424242;
    --light-gray: #F5F5F5;
    --lighter-gray: #FAFAFA;
    --text-primary: #212121;
    --text-secondary: #616161;
    --text-light: #9E9E9E;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.20);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Header - Mobile First */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: -0.5px;
}

/* Mobile Navigation */
.nav-links {
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 1rem;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
}

/* CTA Button - Mobile First */
.cta-button {
    background: var(--primary-red);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-cta {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    box-shadow: none;
}

.secondary-cta:hover {
    background: var(--primary-red);
    color: white;
}

/* Hero Section - Mobile First */
.hero {
    margin-top: 60px;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, rgba(211,47,47,0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    animation: slideInLeft 0.8s ease-out;
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-image {
    display: none;
}

.partner-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    animation: fadeIn 1s ease-out 0.8s both;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    width: fit-content;
}

.partner-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.partner-badge i {
    color: var(--primary-red);
}

/* Services Section - Mobile First */
.services-section {
    padding: 3rem 0;
    background: var(--white);
}

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

.section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-blue));
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffebee 0%, #fff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: color 0.3s;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.service-subcategories {
    list-style: none;
    margin: 0.75rem 0;
    padding: 0;
    flex-grow: 1;
}

.service-subcategories li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.service-subcategories li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-top: auto;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.service-card:hover .service-link {
    gap: 1rem;
}

/* Features Section - Mobile First */
.features-section {
    padding: 3rem 0;
    background: var(--lighter-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

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

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Stats Section - Mobile First */
.stats-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.stat-item {
    padding: 0.5rem;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-item p {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section - Mobile First */
.cta-section {
    padding: 3rem 0;
    background: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

/* Footer - Mobile First */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* Page Headers - Mobile First */
.page-hero {
    margin-top: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Content Sections - Mobile First */
.content-section {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.content-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Page - Collapsible Sections */
.services-hero {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.contact-hero {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.services-hero h1,
.contact-hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.services-hero p,
.contact-hero p {
    font-size: 1rem;
    opacity: 0.9;
}

.services-container {
    padding: 3rem 0;
    background: #f8f9fa;
}

.service-category {
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-category:hover {
    box-shadow: var(--shadow-md);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 12px;
}

.category-header:hover {
    background: var(--lighter-gray);
}

.category-header.active {
    border-color: var(--primary-red);
    background: var(--lighter-gray);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.category-title {
    flex-grow: 1;
}

.category-title h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.category-title p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.category-toggle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.category-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
    background: #f8f9fa;
}

.category-content.active {
    grid-template-rows: 1fr;
    border-top: 1px solid #e0e0e0;
}

.category-content-inner {
    overflow: hidden;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
}

.subcategory-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subcategory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    transform: translateX(-10px);
    transition: transform 0.3s;
}

.subcategory-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-red);
}

.subcategory-card:hover::before {
    transform: translateX(0);
}

.subcategory-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.subcategory-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.subcategory-card ul {
    list-style: none;
    padding: 0;
}

.subcategory-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-left: 1.5rem;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.subcategory-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1rem;
}

.subcategory-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: gap 0.3s;
}

.subcategory-card .learn-more:hover {
    gap: 0.75rem;
}

/* Contact Page - Single Page Layout */
.contact-single-container {
    padding: 3rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info-sidebar {
    display: grid;
    gap: 1rem;
}

.contact-form-single {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

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

.contact-form-single .form-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-form-single .form-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.checkbox-grid-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.form-buttons-single {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-buttons-single .cta-button {
    flex: 1;
    min-width: 150px;
}

/* Success message styling */
.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.form-success h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.form-success p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

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

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

.form-group label span {
    color: var(--primary-red);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--lighter-gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--white);
}

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

.checkbox-group {
    display: grid;
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    flex-shrink: 0;
}

.checkbox-item label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
}

.btn-prev,
.btn-next {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-prev {
    background: var(--light-gray);
    color: var(--text-primary);
}

.btn-next {
    background: var(--primary-red);
    color: white;
}

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

.contact-info-card {
    background: var(--lighter-gray);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-info-card h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-info-card a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.help-card {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.help-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.help-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Animations */
@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 fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Loading state */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

/* About Page Graphics - Mobile */
.content-image-graphic {
    width: 90%;
    height: 90%;
    position: relative;
}

.about-graphic-1 {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-graphic-1::before {
    content: '';
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.about-graphic-1::after {
    content: 'TRUSTED PARTNER';
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.about-graphic-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
}

.mini-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mini-card i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 0.25rem;
}

.mini-card span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.about-graphic-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.network-diagram {
    position: relative;
    width: 200px;
    height: 200px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(211,47,47,0.3);
}

.orbit-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.orbit-node:nth-child(2) { top: 10px; left: 50%; transform: translateX(-50%); }
.orbit-node:nth-child(3) { right: 10px; top: 50%; transform: translateY(-50%); }
.orbit-node:nth-child(4) { bottom: 10px; left: 50%; transform: translateX(-50%); }
.orbit-node:nth-child(5) { left: 10px; top: 50%; transform: translateY(-50%); }

.orbit-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.orbit-line:nth-child(6) { width: 80px; transform: translate(-50%, -50%) rotate(0deg); }
.orbit-line:nth-child(7) { width: 80px; transform: translate(-50%, -50%) rotate(90deg); }
.orbit-line:nth-child(8) { width: 80px; transform: translate(-50%, -50%) rotate(45deg); }
.orbit-line:nth-child(9) { width: 80px; transform: translate(-50%, -50%) rotate(-45deg); }

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
        max-width: 750px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .partner-badges {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1 / -1;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .content-image {
        height: 350px;
    }
    
    /* Services Page Updates */
    .category-title h2 {
        font-size: 1.5rem;
    }
    
    .subcategory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-content {
        background: transparent;
    }
    
    .category-content-inner {
        padding: 1.5rem;
        background: #f8f9fa;
    }
    
    /* Contact Page Updates */
    .checkbox-grid-two-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .container {
        max-width: 980px;
    }
    
    /* Show desktop navigation */
    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
    }
    
    .nav-links a {
        text-decoration: none;
        color: var(--text-primary);
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.3s;
        position: relative;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-red);
        transition: width 0.3s;
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 100%;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-red);
    }
    
    .mobile-menu-toggle,
    .mobile-menu {
        display: none !important;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-image {
        display: block;
        animation: slideInRight 0.8s ease-out 0.6s both;
    }
    
    .hero-graphic {
        width: 100%;
        height: 400px;
        background: 
            radial-gradient(circle at 20% 80%, rgba(211,47,47,0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(25,118,210,0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(211,47,47,0.05) 0%, transparent 50%),
            linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-xl);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-graphic-content {
        position: relative;
        width: 80%;
        height: 80%;
    }
    
    .device-mockup {
        position: absolute;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--primary-red);
    }
    
    .device-mockup.laptop {
        width: 250px;
        height: 160px;
        bottom: 20%;
        left: 10%;
        transform: perspective(600px) rotateY(-15deg);
    }
    
    .device-mockup.phone {
        width: 80px;
        height: 140px;
        top: 20%;
        right: 20%;
        transform: perspective(600px) rotateY(15deg);
    }
    
    .device-mockup.tablet {
        width: 140px;
        height: 100px;
        top: 40%;
        left: 40%;
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    }
    
    .connection-line {
        position: absolute;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
        transform-origin: left center;
        animation: pulse 3s ease-in-out infinite;
    }
    
    .connection-line:nth-child(1) {
        width: 100px;
        top: 30%;
        left: 35%;
        transform: rotate(25deg);
    }
    
    .connection-line:nth-child(2) {
        width: 120px;
        bottom: 40%;
        right: 30%;
        transform: rotate(-15deg);
    }
    
    .network-icon {
        position: absolute;
        color: var(--primary-red);
        font-size: 1.5rem;
        animation: pulse 3s ease-in-out infinite;
        background: white;
        padding: 10px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .network-icon:nth-child(3) { top: 15%; left: 20%; animation-delay: 0s; }
    .network-icon:nth-child(4) { top: 25%; right: 15%; animation-delay: 1s; }
    .network-icon:nth-child(5) { bottom: 25%; left: 50%; animation-delay: 2s; }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .content-grid.reverse {
        direction: rtl;
    }
    
    .content-grid.reverse .content-text {
        direction: ltr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }
    
    .contact-form-single {
        padding: 2.5rem;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-content {
        gap: 4rem;
    }
    
    .services-section,
    .features-section,
    .content-section {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card {
        padding: 2.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .content-image {
        height: 400px;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Print styles */
@media print {
    header,
    footer,
    .cta-button,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}