:root {
    /* Primary Color Palette - Pastel High Contrast */
    --primary-color: #6366f1;
    --primary-light: #a5b4fc;
    --primary-dark: #4338ca;
    --secondary-color: #f59e0b;
    --secondary-light: #fbbf24;
    --accent-color: #10b981;
    --accent-light: #34d399;
    --warning-color: #ef4444;
    --warning-light: #f87171;
    --info-color: #3b82f6;
    --info-light: #60a5fa;
    
    /* Neutral Colors */
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --white: #ffffff;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-small: 0.875rem;
    --font-size-normal: 1rem;
    --font-size-medium: 1.125rem;
    --font-size-large: 1.25rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-normal);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-600);
}

/* Custom Button Styles */
.btn {
    font-weight: 500;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease-in-out;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Navigation Styles */
.navbar {
    padding: var(--spacing-md) 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: var(--font-size-large);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-dark);
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: var(--gray-100);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--gray-100) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, var(--primary-light), transparent);
    transform: rotate(15deg);
    opacity: 0.1;
}

.hero-content {
    z-index: 2;
    position: relative;
    padding-top: 100px;
}

.hero-buttons .btn {
    margin-right: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Card Styles */
.card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: linear-gradient(135deg, var(--white), var(--gray-100));
    transform: translateY(-2px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg) auto;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.price-tag {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Feature Items */
.feature-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.feature-item:hover {
    background: var(--gray-100);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* Price Cards */
.price-card {
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Team Members */
.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.team-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.team-member:hover .team-photo {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

/* Review Cards */
.review-card {
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--secondary-color);
}

/* FAQ Cards */
.faq-card {
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.faq-card:hover {
    background: var(--gray-100);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* Gallery */
.gallery-image {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.contact-info {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color), var(--gray-800));
    color: var(--gray-300);
}

footer h5,
footer h6 {
    color: var(--white);
    font-weight: 600;
}

footer a {
    color: var(--gray-300);
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--primary-light);
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.breadcrumb-item:hover img {
    opacity: 1;
}

/* Additional Page Styles */
.timeline-item,
.mission-card,
.vision-card,
.value-card,
.leader-card,
.culture-card,
.award-card,
.service-overview-card,
.process-step,
.industry-card,
.support-card,
.guarantee-card {
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.timeline-item:hover,
.mission-card:hover,
.vision-card:hover,
.value-card:hover,
.leader-card:hover,
.culture-card:hover,
.award-card:hover,
.service-overview-card:hover,
.industry-card:hover,
.support-card:hover,
.guarantee-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    font-weight: 700;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

/* Icon Wrappers */
.icon-wrapper,
.feature-icon,
.support-icon,
.recognition-icon,
.guarantee-icon,
.culture-icon {
    transition: all 0.3s ease;
}

.card:hover .icon-wrapper,
.feature-item:hover .feature-icon,
.support-item:hover .support-icon,
.recognition-item:hover .recognition-icon,
.guarantee-item:hover .guarantee-icon,
.culture-item:hover .culture-icon {
    transform: scale(1.1);
}

/* Support and guarantee items */
.support-item,
.recognition-item,
.guarantee-item,
.culture-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.support-item:hover,
.recognition-item:hover,
.guarantee-item:hover,
.culture-item:hover {
    background: var(--gray-100);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-accent {
    color: var(--accent-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-light-custom {
    background-color: var(--light-color);
}

.border-primary {
    border-color: var(--primary-color);
}

.border-success {
    border-color: var(--accent-color);
}

/* 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);
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states for better accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
    outline: none;
}

/* Ensure text remains readable */
.text-white {
    color: var(--white);
}

.text-light {
    color: var(--gray-300);
}

.text-muted {
    color: var(--gray-600);
}

.text-success {
    color: var(--accent-color);
}

.text-warning {
    color: var(--secondary-color);
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
