/* VR Fitness Platform - Main CSS */

/* Color Palette Variables */
:root {
    /* Primary Colors */
    --primary-color-1: #6d3ea8; /* Deep Purple */
    --primary-color-2: #dd3e9f; /* Hot Pink */
    --primary-color-3: #12b086; /* Teal */
    --primary-color-4: #ffb312; /* Amber */
    --primary-color-5: #238ef1; /* Blue */
    
    /* Light Shades */
    --primary-color-1-light: #968ce4;
    --primary-color-2-light: #ffb3d6;
    --primary-color-3-light: #60e0c1;
    --primary-color-4-light: #ffde42;
    --primary-color-5-light: #88b1ff;
    
    /* Dark Shades */
    --primary-color-1-dark: #4121a6;
    --primary-color-2-dark: #ce287c;
    --primary-color-3-dark: #14857e;
    --primary-color-4-dark: #c17700;
    --primary-color-5-dark: #1644cf;
    
    /* Gradients */
    --gradient-1: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
    --gradient-2: linear-gradient(135deg, var(--primary-color-3), var(--primary-color-4));
    --gradient-3: linear-gradient(135deg, var(--primary-color-2), var(--primary-color-5));
    --gradient-hero: linear-gradient(135deg, var(--primary-color-1-dark), var(--primary-color-2-dark));
    
    /* Typography */
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #4a5669;
}

/* 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;
    }
}

/* Header Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(11px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: var(--font-size-xl) !important;
    font-weight: 700;
    color: var(--primary-color-1) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #323a56 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color-1) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../PEM_images/hero-vr-fitness.webp') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 1.74rem;
    color: var(--primary-color-2-light);
}

.hero-section p {
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
}

/* Card Styles */
.feature-card, .service-card, .pricing-card, .review-card, 
.case-study-card, .career-card, .info-card, .blog-card {
    background: white;
    border-radius: 19px;
    padding: 2rem;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover, .service-card:hover, .pricing-card:hover,
.case-study-card:hover, .career-card:hover, .info-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.15);
}

.service-card .price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color-1);
    margin-top: 1rem;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color-1);
    transform: scale(1.05);
}

.pricing-card .price {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary-color-1);
    text-align: center;
    margin-top: 1.68rem;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    background: var(--gradient-1);
}

/* Review Cards */
.review-card {
    background: var(--gradient-2);
    color: white;
    text-align: center;
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--gradient-1);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary-color-1);
    border-radius: 50%;
}

/* Career Cards */
.career-card .badge {
    background: var(--primary-color-3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid #ebeef3;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color-1);
    box-shadow: 0 0 0 5px rgba(107, 79, 174, 0.10);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-info i {
    margin-right: 0.75rem;
    color: var(--primary-color-1);
    width: 20px;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(87, 74, 169, 0.30);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color-1);
    color: var(--primary-color-1);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color-1);
    color: white;
    transform: translateY(-2px);
}

/* Blog Cards */
.blog-card img {
    border-radius: 10px;
    margin-bottom: 1rem;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-content {
    padding: 1rem 0;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px !important;
    margin-bottom: 1rem;
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--primary-color-1);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color-1-light);
    color: white;
}

/* Gallery */
.gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #212a38, #2c3644) !important;
    color: white;
}

footer h5 {
    color: var(--primary-color-2-light);
    font-weight: 700;
    margin-bottom: 1rem;
}

footer a {
    color: #bdc3d3;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color-2-light);
}

/* Breadcrumbs */
.breadcrumb-section {
    padding: 2rem 0;
    background: var(--gradient-2);
}

.breadcrumb-section img {
    height: 60px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.8;
}

/* Additional Page Styles */
.tech-feature, .program-card, .environment-card, 
.analytics-card, .social-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color-1);
}

.tech-feature:hover, .program-card:hover, .environment-card:hover,
.analytics-card:hover, .social-card:hover {
    transform: translateY(-3px);
}

.tech-feature h5, .program-card h5, .environment-card h5,
.analytics-card h5, .social-card h5 {
    color: var(--primary-color-1);
    font-weight: 600;
    margin-bottom: 0.98rem;
}

/* Images with specified dimensions */
img[src*="hero-vr-fitness"] { min-height: 400px; object-fit: cover; }
img[src*="service-"] { height: 200px; width: 100%; object-fit: cover; }
img[src*="feature-"] { height: 150px; width: 100%; object-fit: cover; }
img[src*="team_"] { width: 120px; height: 120px; object-fit: cover; }
img[src*="case-study-"] { height: 180px; width: 100%; object-fit: cover; }
img[src*="blog-"] { height: 200px; width: 100%; object-fit: cover; }
img[src*="gallery-"] { height: 250px; width: 100%; object-fit: cover; }
img[src*="breadcrumb-"] { height: 60px; width: 100%; object-fit: cover; }

/* Utility Classes */
.bg-gradient-1 { background: var(--gradient-1); }
.bg-gradient-2 { background: var(--gradient-2); }
.bg-gradient-3 { background: var(--gradient-3); }

.text-primary-1 { color: var(--primary-color-1); }
.text-primary-2 { color: var(--primary-color-2); }
.text-primary-3 { color: var(--primary-color-3); }
.text-primary-4 { color: var(--primary-color-4); }
.text-primary-5 { color: var(--primary-color-5); }



/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
