/* ==========================================
   PODCAST PRODUCTION TEMPLATE - MAIN CSS
   Modern 2025 Design with Professional Styling
   ========================================== */

/* Color Palette Variables */
:root {
  /* Primary Colors */
  --primary-color: #5d5eff;
  --secondary-color: #944bf4;
  --accent-color: #02cceb;
  --success-color: #23bf90;
  --warning-color: #ff8603;
  
  /* Light Shades */
  --primary-light: #cbd9ff;
  --secondary-light: #d9c4e9;
  --accent-light: #ace7e3;
  --success-light: #c6ebd2;
  --warning-light: #e8dfb7;
  
  /* Dark Shades */
  --primary-dark: #482abb;
  --secondary-dark: #7d2fba;
  --accent-dark: #19a8b3;
  --success-dark: #0e7768;
  --warning-dark: #c37f04;
  
  /* Neutral Colors */
  --text-primary: #27313e;
  --text-secondary: #6b6e78;
  --text-light: #aab1ba;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #d9e2f5;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  --gradient-success: linear-gradient(135deg, var(--success-color), var(--accent-color));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

/* Respect Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.62rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.52rem; }
h4 { font-size: 1.39rem; }
h5 { font-size: 1.20rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(11px);
  box-shadow: 0 3px 21px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.58rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.nav-link {
  font-weight: 500;
  color: var(--text-primary) !important;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background-color: var(--primary-light);
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  background: var(--gradient-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../GIP_images/hero-background.webp') center/cover;
  opacity: 0.1;
  z-index: -1;
}

.hero-section h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.59rem;
}

.hero-section h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 1.68rem;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.14rem;
  margin-bottom: 2rem;
}

.hero-image {
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  height: auto;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* Section Styles */
.page-section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.61rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  background-color: var(--bg-light);
}

.service-content {
  padding: 1.5rem;
}

.service-content h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-content li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
}

.service-content li::before {
  content: 'âœ“';
  color: var(--success-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.price {
  font-size: 1.60rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  padding: 1rem;
  background: var(--primary-light);
  border-radius: 0.5rem;
  margin-top: 1rem;
}

/* Feature Items */
.feature-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-icon {
  margin-right: 1rem;
  margin-bottom: 0;
}

.feature-content h4 {
  margin-bottom: 0.65rem;
}

/* Price Cards */
.price-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
  text-align: center;
}

.price-card.featured {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
  border-color: var(--primary-color);
}

.price-card.featured h4,
.price-card.featured p {
  color: white;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 17px 35px rgba(0, 0, 0, 0.1);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

/* Team Cards */
.team-member {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--primary-light);
  transition: all 0.3s ease;
}

.team-member:hover .team-photo {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

/* Review Cards */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 7px solid var(--primary-color);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 25px rgba(0, 0, 0, 0.1);
}

.review-card p {
  font-style: italic;
  font-size: 1.17rem;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.05);
  border-left: 7px solid var(--primary-color);
  height: 100%;
}

.contact-info-card h5 {
  color: var(--primary-color);
  margin-bottom: 1.61rem;
}

.contact-info-card p {
  margin-bottom: 0.94rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(127, 116, 232, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(100, 86, 218, 0.30);
}

/* FAQ Accordion */
.accordion-button {
  background: var(--bg-light);
  border: none;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 116, 238, 0.25);
}

/* Gallery */
.gallery-image {
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  height: 200px;
  object-fit: cover;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.54rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  max-width: 45%;
}

.timeline-item:nth-child(odd) {
  margin-left: auto;
}

.timeline-item:nth-child(even) {
  margin-right: auto;
}

/* Career Cards */
.career-card,
.case-card,
.info-item,
.support-item,
.blog-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.career-card:hover,
.case-card:hover,
.info-item:hover,
.support-item:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.badge {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.95rem;
}

/* Blog Cards */
.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  background-color: var(--bg-light);
}

/* Specific image sizing specifications */
img[src*="hero-image"] {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

img[src*="service-"] {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

img[src*="team_"] {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

img[src*="gallery-"] {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

img[src*="blog-"] {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

img[src*="breadcrumb-icon"] {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  text-decoration: underline;
}

/* Space Section */
.space-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  margin-top: 80px;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--bg-light);
  margin-top: 80px;
}

.breadcrumb-image {
  height: 40px;
  width: 40px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  margin-top: 2rem;
}

.footer h5,
.footer h6 {
  color: white;
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 0.71rem;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { left: -100%; }
  100% { left: 100%; }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
