/*
 * AI-Powered Learning Style Assessments Template
 * Bootstrap 5 Integration - No Overrides
 * Conservative Typography & Responsive Design
 */

/* ===== COLOR PALETTE ===== */
:root {
  /* Primary AI Learning Colors */
  --primary-blue: #419ad3;
  --primary-purple: #6a59d7;
  --primary-teal: #33c2c9;
  --primary-green: #34d740;
  --primary-orange: #f1960e;
  
  /* Light Shades */
  --light-blue: #f7fdff;
  --light-purple: #F3F0FF;
  --light-teal: #d4f3fc;
  --light-green: #F0FFF0;
  --light-orange: #ece4d2;
  
  /* Dark Shades */
  --dark-blue: #145eac;
  --dark-purple: #5d2aa5;
  --dark-teal: #0b7a75;
  --dark-green: #308a20;
  --dark-orange: #f44a30;
  
  /* Neutral Colors */
  --text-primary: #394c61;
  --text-secondary: #71797a;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  
  /* Conservative Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: var(--font-size-base);
}

/* ===== CONSERVATIVE TYPOGRAPHY ===== */
.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: 600;
  color: var(--primary-blue);
}

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.875rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.lead {
  font-size: var(--font-size-lg);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-blob-1 {
  background: var(--primary-teal);
  top: 10%;
  right: 15%;
  animation: float 6s ease-in-out infinite;
}

.hero-blob-2 {
  background: var(--primary-purple);
  bottom: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

/* ===== SECTION STYLING ===== */
.section-padding {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: var(--bg-light);
}

.section-title {
  color: var(--primary-blue);
  position: relative;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* ===== CARDS & COMPONENTS ===== */
.service-card {
  background: var(--bg-white);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.price-card {
  background: var(--bg-white);
  border: 2px solid var(--light-blue);
  border-radius: 15px;
  text-align: center;
  transition: border-color 0.3s ease;
  height: 100%;
}

.price-card.featured {
  border-color: var(--primary-blue);
  position: relative;
  transform: scale(1.05);
}

.team-card {
  background: var(--bg-white);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.review-card {
  background: var(--bg-white);
  border-left: 4px solid var(--primary-teal);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  transform: translateY(-2px);
}

.btn-outline-custom {
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--primary-purple);
  color: white;
}

/* ===== PRICING DISPLAY ===== */
.price-display {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--bg-white);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--light-blue);
  border-radius: 8px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(76, 122, 205, 0.25);
}

/* ===== FOOTER STYLES ===== */
.footer-section {
  background-color: var(--text-primary);
  color: var(--bg-light);
  padding: 3rem 0 1rem 0;
}

.footer-section h5 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-blue);
}

/* ===== FAQ STATIC CARDS ===== */
.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--light-blue);
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.faq-card:hover {
  border-color: var(--primary-blue);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* ===== ICON STYLING ===== */
.feature-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* ===== ANIMATIONS (CONSERVATIVE) ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-blob-1,
  .hero-blob-2 {
    animation: none;
  }
}

/* ===== BREADCRUMB STYLING ===== */
.breadcrumb-image {
  height: 40px;
  width: auto;
  opacity: 0.8;
}

/* ===== UTILITY CLASSES ===== */
.text-primary-custom {
  color: var(--primary-blue);
}

.text-secondary-custom {
  color: var(--text-secondary);
}

.bg-gradient-light {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
}

.border-primary-custom {
  border-color: var(--primary-blue);
}

/* ===== IMAGE RESPONSIVENESS ===== */
.img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
} 

.hero-section h1 {
    padding-top: 275px;
}


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
