/* VR Language Immersion Template - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --vr-primary: #6366f1;
  --vr-primary-light: #a5b4fc;
  --vr-primary-dark: #4338ca;
  
  --vr-secondary: #22d3ee;
  --vr-secondary-light: #7dd3fc;
  --vr-secondary-dark: #0891b2;
  
  --vr-accent: #f472b6;
  --vr-accent-light: #fbb6ce;
  --vr-accent-dark: #db2777;
  
  --vr-success: #10b981;
  --vr-success-light: #6ee7b7;
  --vr-success-dark: #047857;
  
  --vr-warning: #f59e0b;
  --vr-warning-light: #fbbf24;
  --vr-warning-dark: #d97706;
  
  /* Neutral Colors */
  --vr-white: #ffffff;
  --vr-light: #f8fafc;
  --vr-gray: #64748b;
  --vr-dark: #1e293b;
  --vr-black: #0f172a;
  
  /* 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;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --card-border-radius: 1rem;
  --button-border-radius: 0.75rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--vr-dark);
  background-color: var(--vr-white);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--vr-primary);
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--vr-gray);
}

/* Header Styles */
#header {
  background: linear-gradient(135deg, var(--vr-primary) 0%, var(--vr-secondary) 100%);
  box-shadow: 0 2px 20px rgba(99, 102, 241, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--vr-white);
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--vr-accent-light);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  padding-top: 6rem;
  background: linear-gradient(135deg, var(--vr-light) 0%, rgba(99, 102, 241, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 175px;
}

.hero-decorative {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--vr-accent), var(--vr-secondary));
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--vr-primary), var(--vr-warning));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--vr-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--font-size-sm);
  margin-bottom: 0.5rem;
}

/* Card Styles */
.custom-card {
  background: var(--vr-white);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--vr-primary), var(--vr-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--vr-white);
  font-size: 1.5rem;
}

/* Services Section */
#services {
  background: var(--vr-light);
}

.service-price {
  color: var(--vr-primary);
  font-weight: 700;
  font-size: var(--font-size-2xl);
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

/* Team Section */
#team {
  background: var(--vr-light);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--vr-primary);
}

/* Reviews Section */
.review-card {
  background: var(--vr-white);
  border-left: 4px solid var(--vr-primary);
  padding: 2rem;
  margin-bottom: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--vr-primary);
}

/* FAQ Section */
#faq {
  background: var(--vr-light);
}

.faq-card {
  background: var(--vr-white);
  border-radius: var(--card-border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.08);
}

.faq-question {
  font-weight: 600;
  color: var(--vr-primary);
  margin-bottom: 1rem;
}

/* Gallery Section */
#gallery .gallery-item {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: var(--card-border-radius);
}

/* Contact Section */
#contact {
  background: var(--vr-light);
}

.contact-form {
  background: var(--vr-white);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.form-control {
  border: 2px solid #e2e8f0;
  border-radius: var(--button-border-radius);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--vr-primary);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--vr-primary), var(--vr-secondary));
  border: none;
  border-radius: var(--button-border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--vr-primary-dark), var(--vr-secondary-dark));
}

/* Footer */
#footer {
  background: var(--vr-dark);
  color: var(--vr-white);
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--vr-primary-light);
  margin-bottom: 1rem;
}

#footer a {
  color: var(--vr-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--vr-primary-light);
}

/* Blog Section */
#blog {
  background: var(--vr-light);
}

.blog-card {
  background: var(--vr-white);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

/* Price Plans */
.price-card {
  position: relative;
  background: var(--vr-white);
  border-radius: var(--card-border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--vr-primary);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--vr-primary), var(--vr-secondary));
  color: var(--vr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-xl);
  margin: 0 auto 1rem;
}

/* Case Studies */
.case-study-card {
  background: var(--vr-white);
  border-radius: var(--card-border-radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.08);
  margin-bottom: 2rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--vr-primary);
  border-radius: 50%;
  border: 3px solid var(--vr-white);
  box-shadow: 0 0 0 2px var(--vr-primary);
}

/* Career Items */
.career-item {
  background: var(--vr-white);
  border-radius: var(--card-border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--vr-primary);
}

/* Core Info Items */
.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--vr-white);
  border-radius: var(--card-border-radius);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-3px);
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
