/* Color Palette - High Contrast Pastel Colors */
:root {
    --primary-1: #6272ee;          /* Soft Blue */
    --primary-1-light: #848fff;    
    --primary-1-dark: #493db5;     
    
    --primary-2: #fa7a95;          /* Soft Pink */
    --primary-2-light: #ff94b3;    
    --primary-2-dark: #cf558c;     
    
    --primary-3: #4bc0b1;          /* Soft Teal */
    --primary-3-light: #80e4cf;    
    --primary-3-dark: #319c93;     
    
    --primary-4: #ffca32;          /* Soft Orange */
    --primary-4-light: #ffdd7a;    
    --primary-4-dark: #ce8348;     
    
    --primary-5: #7ec7b5;          /* Soft Mint */
    --primary-5-light: #a6e8d1;    
    --primary-5-dark: #6e9d91;     
    
    --text-dark: #2b4152;
    --text-light: #839495;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-dark: #2b2e34;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.65rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.59rem;
}

h4 {
    font-size: 1.37rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary-1), var(--primary-3));
    backdrop-filter: blur(15px);
    padding: 0.75rem 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.64rem !important;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.76s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-2-light) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: var(--white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-1-light), var(--primary-5-light));
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-car.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.64rem;
}

.hero-section p {
    font-size: 1.33rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.bg-light {
    background: linear-gradient(135deg, var(--gray-light), var(--primary-5-light));
}

/* Card Styles */
.card {
    border: none;
    border-radius: 19px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.76s ease;
    overflow: hidden;
    background: var(--white);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 17px 35px rgba(0,0,0,0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: var(--primary-1);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Button Styles */
.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.76s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-1-dark), var(--primary-2-dark));
    transform: translateY(-2px);
    box-shadow: 0 13px 20px rgba(0,0,0,0.2);
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid var(--gray-light);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.76s ease;
}

.form-control:focus {
    border-color: var(--primary-1);
    box-shadow: 0 0 0 0.2rem rgba(94, 110, 255, 0.25);
}

/* Features Section */
.features-section i {
    color: var(--primary-3);
    margin-bottom: 1rem;
}

/* Services Section */
#services .card {
    background: linear-gradient(135deg, var(--white), var(--gray-light));
}

#services .card:nth-child(odd) {
    background: linear-gradient(135deg, var(--primary-5-light), var(--white));
}

/* Price Display */
.card h6 {
    color: var(--primary-2);
    font-size: 1.63rem;
    font-weight: 700;
}

/* Icon Styles */
.fa-3x {
    font-size: 2.64rem !important;
}

/* Breadcrumb */
.breadcrumb-nav {
    padding: 1rem 0;
    background: var(--gray-light);
}

.breadcrumb-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--gray-dark), var(--primary-1-dark));
    color: var(--white);
}

footer h5, footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
}

footer a {
    color: var(--primary-3-light);
    text-decoration: none;
    transition: color 0.76s ease;
}

footer a:hover {
    color: var(--primary-2-light);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.72rem;
}

/* Space Page */
#space {
    background: linear-gradient(135deg, var(--primary-4-light), var(--primary-5-light));
    padding: 5rem 0;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-1) !important;
}

.bg-primary {
    background-color: var(--primary-1) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 1.25s ease forwards;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Image Placeholder Styles */
.card-img-top {
    background: linear-gradient(45deg, var(--primary-1-light), var(--primary-3-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.16rem;
}

/* Additional Spacing */
.mb-4 {
    margin-bottom: 2rem !important;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Section-specific Styles */

/* Price Plan Section */
#priceplan .card {
    background: linear-gradient(135deg, var(--white), var(--primary-1-light));
    transition: all 0.76s ease;
}

#priceplan .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Process Section - Step Numbers */
.process-step {
    background: linear-gradient(135deg, var(--primary-1), var(--primary-3));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Timeline Section */
#timeline .card {
    background: linear-gradient(135deg, var(--primary-5-light), var(--white));
    border-left: 4px solid var(--primary-2);
}

/* Career Section */
#career .card {
    background: linear-gradient(135deg, var(--white), var(--primary-4-light));
}

#career .card:hover {
    background: linear-gradient(135deg, var(--primary-4-light), var(--primary-5-light));
}

/* Core Info Section */
#coreinfo .card {
    background: linear-gradient(135deg, var(--white), var(--primary-3-light));
    border-top: 3px solid var(--primary-1);
}

/* Blog Section */
#Blog .card {
    background: linear-gradient(135deg, var(--white), var(--gray-light));
    transition: all 0.76s ease;
}

#Blog .card:hover {
    background: linear-gradient(135deg, var(--primary-5-light), var(--white));
}

/* Case Studies Section */
#casestudy .card {
    background: linear-gradient(135deg, var(--primary-2-light), var(--white));
    border-radius: 15px;
}

/* Gallery Section Styling */
.gallery-section img {
    transition: all 0.76s ease;
    border-radius: 10px;
}

.gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Reviews Section - Testimonial Cards */
#reviews .card {
    background: linear-gradient(135deg, var(--white), var(--primary-1-light));
    border-left: 4px solid var(--primary-3);
}

#reviews .blockquote-footer {
    color: var(--primary-1);
    font-weight: 600;
}

/* FAQ Section - Accordion Style */
#faq .card {
    background: linear-gradient(135deg, var(--white), var(--gray-light));
    border-left: 3px solid var(--primary-2);
    margin-bottom: 1rem;
}

#faq .card:hover {
    border-left-color: var(--primary-1);
    background: linear-gradient(135deg, var(--primary-5-light), var(--white));
}

/* Team Section - Enhanced Cards */
#team .card {
    background: linear-gradient(135deg, var(--white), var(--primary-5-light));
    transition: all 0.76s ease;
}

#team .card:hover {
    background: linear-gradient(135deg, var(--primary-5-light), var(--primary-1-light));
}

/* Additional spacing for sections */
section {
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(135deg, var(--gray-light), var(--primary-5-light));
}

/* High Contrast for Accessibility */
@media (prefers-contrast: high) {
    :root {
        --text-dark: #000000;
        --text-light: #1d1b1b;
    }
    
    .card {
        border: 2px solid var(--text-dark);
    }
    
    .process-step {
        border: 2px solid var(--text-dark);
    }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
