:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-color: #6b7df9;
    --secondary-color: #4dbf53;
    --accent-color: #ec8ebf;
    --warning-color: #ffcd46;
    --info-color: #8cd9ff;
    
    /* Light shades */
    --primary-light: #999fde;
    --secondary-light: #a0eca0;
    --accent-light: #ea9ecc;
    --warning-light: #f1c258;
    --info-light: #aed6ff;
    
    /* Dark shades */
    --primary-dark: #4854bd;
    --secondary-dark: #42a954;
    --accent-dark: #ff50ac;
    --warning-dark: #f2a613;
    --info-dark: #37c1f0;
    
    /* Conservative Typography */
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.25rem;
    --font-size-h6: 1rem;
    
    /* Navbar Brand Conservative Size */
    --navbar-brand-font-size: 1.39rem;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Conservative Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #454141;
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    margin-bottom: 0.98rem;
    color: var(--primary-dark);
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 500;
    margin-bottom: 0.87rem;
    color: var(--secondary-dark);
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: 500;
    margin-bottom: 0.94rem;
}

h5 {
    font-size: var(--font-size-h5);
    font-weight: 500;
    margin-bottom: 0.61rem;
}

h6 {
    font-size: var(--font-size-h6);
    font-weight: 500;
    margin-bottom: 0.65rem;
}

p {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
    color: #696969;
}

/* Conservative Navbar Brand Size */
.navbar-brand {
    font-size: var(--navbar-brand-font-size);
    font-weight: 600;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 20%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-section h1 {
    color: white;
    text-shadow: 4px 2px 9px rgba(0,0,0,0.3);
    padding-top: 175px;
}

.hero-section h2 {
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-section p {
    color: rgba(255,255,255,0.8);
    font-size: var(--font-size-large);
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 15px rgba(0,0,0,0.2);
}

.card-body {
    padding: 1.5rem;
}

/* Services Section */
.price {
    font-size: 1.54rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 1rem;
}

.price::before {
    content: 'Starting at ';
    font-size: 1.02rem;
    font-weight: normal;
    color: #504c4c;
}

/* Process Steps */
.process-step {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.27rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step-card {
    text-align: center;
    padding: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item:first-child::before {
    top: 50%;
    height: 50%;
}

.timeline-item:last-child::before {
    height: 50%;
}

/* Metric Cards */
.metric-card, .support-card, .customization-card, .integration-card, .security-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.metric-card:hover, .support-card:hover, .customization-card:hover, .integration-card:hover, .security-card:hover {
    transform: translateY(-5px);
}

.metric-card i, .support-card i, .customization-card i, .integration-card i, .security-card i {
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb-section {
    padding-top: 80px;
}

.breadcrumb-image {
    height: 30px;
    width: auto;
}

/* Contact Form */
.contact-info {
    background: var(--info-light);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.contact-info h5 {
    color: var(--primary-dark);
    margin-bottom: 1.59rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(124, 126, 233, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--primary-dark);
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* Pricing Cards */
.border-primary {
    border-color: var(--primary-color) !important;
    border-width: 2px !important;
}

/* Reviews Section */
.blockquote-footer {
    margin-top: 1rem;
    font-size: 0.97rem;
    color: #767071;
}

.blockquote-footer cite {
    font-style: normal;
    font-weight: 500;
    color: var(--primary-color);
}

/* Gallery */
.gallery img {
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Team Section */
.team-member {
    text-align: center;
    padding: 1rem;
}

.team-member img {
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.1);
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* Space Page */
#space {
    background: linear-gradient(135deg, var(--primary-light), var(--info-light));
    padding-top: 80px;
}

#space h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#space .lead {
    color: rgba(255,255,255,0.9);
    font-size: var(--font-size-large);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 175px;
}
    
    .hero-section h2 {
        font-size: 1.55rem;
    }
    
    .process-step {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.97rem;
    }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
