/* ======================================
   VOICEOVER GENERATION PLATFORM - MAIN STYLES
   ====================================== */

/* ======================================
   CSS VARIABLES - COLOR PALETTE
   ====================================== */
:root {
  /* Primary Colors - Pastel High-Contrast */
  --primary-color-1: #e9f9ff; /* Light Sky Blue */
  --primary-color-2: #dcfad6; /* Soft Mint Green */
  --primary-color-3: #ffcbc6; /* Warm Peach */
  --primary-color-4: #dfdfe3; /* Lavender */
  --primary-color-5: #fcf4ce; /* Pale Yellow */
  
  /* Light Shades */
  --light-color-1: #F8FEFF;
  --light-color-2: #F0FFF0;
  --light-color-3: #FFF8F5;
  --light-color-4: #F8F8FF;
  --light-color-5: #FFFEF0;
  
  /* Dark Shades */
  --dark-color-1: #364c85;
  --dark-color-2: #348e37;
  --dark-color-3: #c84403;
  --dark-color-4: #6a36b1;
  --dark-color-5: #ff7e00;
  
  /* Neutral Colors */
  --text-primary: #202a3e;
  --text-secondary: #434d57;
  --text-light: #8089a3;
  --background-light: #f7fafc;
  --background-white: #ffffff;
  --border-color: #f3f3f4;
  
  /* Conservative Font Sizes */
  --font-size-navbar: 1rem;
  --font-size-h1: 2.25rem;
  --font-size-h2: 1.875rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.125rem;
  --font-size-h6: 1rem;
  --font-size-body: 0.875rem;
  --font-size-small: 0.75rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-sm: 3rem 0;
  
  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-fast: 0.15s ease;
}

/* ======================================
   PREFERS REDUCED MOTION
   ====================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ======================================
   BASE STYLES
   ====================================== */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-white);
}

/* ======================================
   TYPOGRAPHY - CONSERVATIVE SIZING
   ====================================== */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.97rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 0.90rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 0.64rem;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 0.66rem;
}

p {
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ======================================
   NAVBAR STYLES
   ====================================== */
.navbar-brand {
  font-size: var(--font-size-navbar);
  font-weight: 700;
  color: var(--dark-color-1);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--dark-color-1);
}

.navbar-nav .nav-link {
  font-size: var(--font-size-body);
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  transition: color var(--transition-base);
}

.navbar-nav .nav-link:hover {
  color: var(--dark-color-1);
}

.navbar-nav .nav-link.active {
  color: var(--dark-color-1);
}

/* ======================================
   HERO SECTION
   ====================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--primary-color-2) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-color-4) 0%, transparent 70%);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 200px;
}

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: var(--dark-color-1);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--font-size-h3);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1.63rem;
}

.hero-description {
  font-size: var(--font-size-body);
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ======================================
   SECTION STYLES
   ====================================== */
.section {
  padding: var(--section-padding);
}

.section-sm {
  padding: var(--section-padding-sm);
}

.section-title {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--font-size-h4);
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.64rem;
}

.section-description {
  font-size: var(--font-size-body);
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================================
   CARD STYLES
   ====================================== */
.service-card {
  background: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.375rem;
  margin-bottom: 1.67rem;
}

.service-card h4 {
  color: var(--dark-color-1);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.56rem;
}

.service-price {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--dark-color-3);
  margin-bottom: 1rem;
}

/* ======================================
   TEAM CARD STYLES
   ====================================== */
.team-card {
  background: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition-base);
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-card h5 {
  color: var(--dark-color-1);
  margin-bottom: 0.56rem;
}

.team-card p {
  color: var(--text-secondary);
  font-size: var(--font-size-small);
  margin-bottom: 0;
}

/* ======================================
   TESTIMONIAL STYLES
   ====================================== */
.testimonial-card {
  background: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 3rem;
  color: var(--primary-color-1);
  font-weight: 700;
}

.testimonial-text {
  font-size: var(--font-size-body);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-size: var(--font-size-small);
  color: var(--dark-color-1);
  font-weight: 600;
  margin-bottom: 0;
}

/* ======================================
   FAQ STYLES
   ====================================== */
.faq-card {
  background: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-size: var(--font-size-h6);
  font-weight: 600;
  color: var(--dark-color-1);
  margin-bottom: 0.84rem;
}

.faq-answer {
  font-size: var(--font-size-body);
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ======================================
   FORM STYLES
   ====================================== */
.form-control {
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: var(--font-size-body);
  transition: border-color var(--transition-base);
}

.form-control:focus {
  border-color: var(--dark-color-1);
  box-shadow: 0 0 0 0.2rem rgba(45, 77, 130, 0.25);
}

.btn-primary {
  background-color: var(--dark-color-1);
  border-color: var(--dark-color-1);
  font-size: var(--font-size-body);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: background-color var(--transition-base);
}

.btn-primary:hover {
  background-color: var(--dark-color-2);
  border-color: var(--dark-color-2);
}

/* ======================================
   FOOTER STYLES
   ====================================== */
.footer {
  background: linear-gradient(135deg, var(--dark-color-1) 0%, var(--dark-color-2) 100%);
  color: var(--background-white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--background-white);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--light-color-1);
  font-size: var(--font-size-small);
}

.footer a {
  color: var(--light-color-1);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer a:hover {
  color: var(--background-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* ======================================
   GALLERY STYLES
   ====================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ======================================
   UTILITY CLASSES
   ====================================== */
.text-gradient {
  background: linear-gradient(135deg, var(--dark-color-1), var(--dark-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color-1), var(--primary-color-2));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-color-3), var(--primary-color-4));
}

.shadow-soft {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.border-radius-lg {
  border-radius: 1rem;
}

.border-radius-xl {
  border-radius: 1.5rem;
}

/* ======================================
   ANIMATION SUPPORT
   ====================================== */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up {
  transform: translateY(30px);
  opacity: 0;
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
  to { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .slide-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
} 


/* 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;
    }
}
