/* Video Production Company Template - Main CSS */

:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-blue: #5caaea;
  --primary-purple: #753aaf;
  --primary-teal: #12c0d4;
  --primary-coral: #ea5965;
  --primary-gold: #feff07;
  
  /* Light Shades */
  --light-blue: #c8e0ed;
  --light-purple: #ddd6e7;
  --light-teal: #f3ffff;
  --light-coral: #ffd6d4;
  --light-gold: #fffbba;
  
  /* Dark Shades */
  --dark-blue: #234587;
  --dark-purple: #7b57b3;
  --dark-teal: #018678;
  --dark-coral: #bb4e59;
  --dark-gold: #d47d11;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #2a2726;
  --gray-light: #F8F9FA;
  --gray-medium: #66717f;
  --gray-dark: #32383e;
  
  /* 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;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
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.95rem; }
h3 { font-size: var(--font-size-h3); font-weight: 600; margin-bottom: 0.92rem; }
h4 { font-size: var(--font-size-h4); font-weight: 500; margin-bottom: 0.79rem; }
h5 { font-size: var(--font-size-h5); font-weight: 500; margin-bottom: 0.74rem; }
h6 { font-size: var(--font-size-h6); font-weight: 500; margin-bottom: 0.59rem; }

p { margin-bottom: 1rem; }

.text-gradient-blue-purple {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-teal-coral {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 700;
  color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-dark) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-coral));
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-21px); }
}

.hero-image {
  border-radius: 21px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-19px);
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: var(--font-size-small);
  margin-bottom: 0.56rem;
}

/* Card Styles */
.feature-card, .service-card, .price-card, .team-card, .review-card, .case-card, .process-card, .timeline-card, .career-card, .core-card, .blog-card, .faq-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: none;
}

.feature-card:hover, .service-card:hover, .price-card:hover, .team-card:hover, .review-card:hover, .case-card:hover, .process-card:hover, .timeline-card:hover, .career-card:hover, .core-card:hover, .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* About Section */
.about-section {
  background: var(--gray-light);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 2rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--light-teal), var(--light-coral));
}

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.service-price {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-coral));
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-size-lg);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: inline-block;
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background: var(--white);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--light-purple);
}

.price-card.featured {
  border: 3px solid var(--primary-blue);
  transform: scale(1.05);
}

.price-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  color: var(--white);
  padding: 2rem;
  text-align: center;
  border-radius: 15px 15px 0 0;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background: var(--gray-light);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-blue);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--light-blue), var(--light-gold));
}

.review-card .card-body {
  position: relative;
}

.review-quote {
  font-size: 3rem;
  color: var(--primary-blue);
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
}

/* Case Studies Section */
.casestudy-section {
  background: var(--white);
}

/* Process Section */
.process-section {
  background: var(--light-teal);
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-size-lg);
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--gray-light);
}

/* Career Section */
.career-section {
  background: var(--light-coral);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--white);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(50, 122, 212, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-blue), var(--dark-purple));
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background: var(--light-gold);
}

/* FAQ Section */
.faq-section {
  background: var(--gray-light);
}

.faq-card .card-header {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
  color: var(--white);
  font-weight: 600;
  border-radius: 10px 10px 0 0;
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-blue), var(--dark-purple));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Utility Classes */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-gold { color: var(--primary-gold); }

.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-purple { background-color: var(--primary-purple); }
.bg-primary-teal { background-color: var(--primary-teal); }
.bg-primary-coral { background-color: var(--primary-coral); }
.bg-primary-gold { background-color: var(--primary-gold); }

.bg-gradient-blue-purple {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
}

.bg-gradient-teal-coral {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-coral));
}

.bg-gradient-gold-coral {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-coral));
}

/* Image Resolutions */
.img-hero { width: 100%; max-width: 600px; height: 400px; object-fit: cover; }
.img-service { width: 100%; height: 200px; object-fit: cover; }
.img-team { width: 150px; height: 150px; object-fit: cover; }
.img-gallery { width: 100%; height: 250px; object-fit: cover; }
.img-blog { width: 100%; height: 200px; object-fit: cover; }
.img-case { width: 100%; height: 180px; object-fit: cover; }

/* Breadcrumb */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--light-blue);
}

.breadcrumb-img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* FAQ Active State */
.faq-card.active .card-header {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
}

/* Back to Top Button */
#a485b5k-to-top {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple)) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(77, 126, 210, 0.40);
}

#cbbfdbk-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 20px rgba(78, 154, 222, 0.60);
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up {
  animation: slideUp 0.6s ease-in-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
} 


/* 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;
    }
}
