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

/* ===== COLOR PALETTE ===== */
:root {
  /* Primary AI Learning Colors */
  --primary-blue: #4A90E2;
  --primary-purple: #7B68EE;
  --primary-teal: #20B2AA;
  --primary-green: #32CD32;
  --primary-orange: #FF8C00;
  
  /* Light Shades */
  --light-blue: #E3F2FD;
  --light-purple: #F3F0FF;
  --light-teal: #E0F7FA;
  --light-green: #F0FFF0;
  --light-orange: #FFF8DC;
  
  /* Dark Shades */
  --dark-blue: #1565C0;
  --dark-purple: #512DA8;
  --dark-teal: #00695C;
  --dark-green: #228B22;
  --dark-orange: #FF6347;
  
  /* Neutral Colors */
  --text-primary: #2C3E50;
  --text-secondary: #7F8C8D;
  --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(74, 144, 226, 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: 125px;
}



.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);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 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;
    }
}



/* 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;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

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