:root {
    /* Primary Color Palette - 5 colors with light/dark variations */
    --primary-red: #d32f2f;
    --primary-red-light: #ff6659;
    --primary-red-dark: #9a0007;
    
    --primary-orange: #ff8f00;
    --primary-orange-light: #ffc046;
    --primary-orange-dark: #c56000;
    
    --primary-gray: #424242;
    --primary-gray-light: #6d6d6d;
    --primary-gray-dark: #1b1b1b;
    
    --primary-silver: #90a4ae;
    --primary-silver-light: #c1d5e0;
    --primary-silver-dark: #62757f;
    
    --primary-dark: #212121;
    --primary-dark-light: #484848;
    --primary-dark-dark: #000000;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.5rem;
    --font-size-navbar-brand: 1.25rem;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    --gradient-secondary: linear-gradient(135deg, var(--primary-gray), var(--primary-silver));
    --gradient-hero: linear-gradient(rgba(212, 47, 47, 0.8), rgba(255, 143, 0, 0.8));
}

/* Base Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--primary-dark);
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

p {
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar-brand {
    font-size: var(--font-size-navbar-brand) !important;
    font-weight: 700;
    color: var(--primary-red) !important;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  font-size: 12px !important;
    font-weight: 500;
    color: var(--primary-dark) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    background: var(--gradient-hero), url('../MYS_images/mcis_hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero .hero-content {
    color: white;
}

#hero .hero-image {
    position: relative;
}

.decorative-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
    background: var(--gradient-secondary);
}

/* Services Section */
#services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 15px 0;
}

/* About Section */
#about {
    padding: 80px 0;
    background: white;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: var(--primary-silver-light);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* Features Section */
#features {
    padding: 80px 0;
    background: var(--gradient-secondary);
    color: white;
}

/* Price Plans */
#priceplan {
    padding: 80px 0;
    background: white;
}

.price-card {
    background: white;
    border: 2px solid var(--primary-silver-light);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.price-card:hover,
.price-card.featured {
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(212, 47, 47, 0.2);
    transform: translateY(-5px);
}

.price-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 20px 0;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--primary-silver-light);
}

.price-features li:last-child {
    border-bottom: none;
}

/* Team Section */
#team {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f3f4, #e8eaf0);
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary-red);
}

/* Reviews Section */
#reviews {
    padding: 80px 0;
    background: var(--primary-dark);
    color: white;
}

.review-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.review-stars {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Case Studies */
#casestudy {
    padding: 80px 0;
    background: white;
}

.case-study-item {
    background: linear-gradient(135deg, white, var(--primary-silver-light));
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Process Section */
#process {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

.process-item {
    text-align: center;
    padding: 30px 20px;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Timeline */
#timeline {
    padding: 80px 0;
    background: white;
}

.timeline-item {
    position: relative;
    padding: 30px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, white, var(--primary-silver-light));
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-red);
}

/* Career Section */
#career {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-gray-light), var(--primary-silver));
    color: white;
}

.career-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

/* Core Info */
#coreinfo {
    padding: 80px 0;
    background: white;
}

.core-info-item {
    text-align: center;
    padding: 30px 20px;
}

.core-info-item i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

/* Contact Form */
#contacts {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red-light), var(--primary-orange-light));
    color: white;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    color: var(--primary-dark);
}

.contact-form .form-control {
    border: 2px solid var(--primary-silver-light);
    border-radius: 10px;
    padding: 15px;
    font-size: var(--font-size-base);
}

.contact-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(212, 47, 47, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 47, 47, 0.3);
}

/* Blog Section */
#blog {
    padding: 80px 0;
    background: white;
}

.blog-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

/* FAQ Section */
#faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 20px;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Gallery */
#gallery {
    padding: 80px 0;
    background: white;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h5 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section a {
    color: var(--primary-silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-red);
}

/* Space Page */
#space {
    min-height: 60vh;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 20px 0;
}

.breadcrumb-item {
    color: var(--primary-gray);
}

.breadcrumb-item img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

/* Responsive Design */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--primary-red);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-red);
}

/* Section Spacing */
section {
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--gradient-primary) border-box;
} 