/* Pop-up Art Gallery Logistics Company - Main Styles */

:root {
  /* Color Palette - Pastel High-Contrast Colors */
  --primary-coral: #ff8380;
  --primary-mint: #59d0c5;
  --primary-lavender: #b3d8c9;
  --primary-peach: #fee454;
  --primary-sky: #89baff;
  
  /* Light/Dark Shades */
  --light-coral: #edb8b4;
  --dark-coral: #c0606a;
  --light-mint: #72dad4;
  --dark-mint: #49b9b9;
  --light-lavender: #e0fff3;
  --dark-lavender: #66b893;
  --light-peach: #ffc96b;
  --dark-peach: #e4de32;
  --light-sky: #a6d8ff;
  --dark-sky: #6283b2;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.4rem;
  --font-size-h4: 1.2rem;
  --navbar-brand-size: 1.3rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #242323;
  font-size: var(--font-size-base);
}

/* Conservative Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

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

/* Navbar Conservative Sizing */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 600;
  color: var(--primary-coral);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-coral) 0%, var(--light-mint) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-lavender);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

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

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

.section-desc {
  color: #4f4f4f;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid var(--light-lavender);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-coral);
}

/* Features Cards */
.feature-card {
  background: var(--light-sky);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px solid var(--primary-sky);
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 3px solid var(--light-peach);
  margin-bottom: 2rem;
}

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

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 2px solid var(--light-mint);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-mint);
  margin-bottom: 1rem;
}

/* Reviews Cards */
.review-card {
  background: var(--light-lavender);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-lavender);
}

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border: 2px solid var(--light-peach);
  margin-bottom: 2rem;
}

/* Process Cards */
.process-card {
  background: var(--light-sky);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  border: 2px solid var(--primary-sky);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-coral);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Timeline Cards */
.timeline-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary-mint);
}

/* Career Cards */
.career-card {
  background: var(--light-coral);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid var(--primary-coral);
}

/* Core Info Cards */
.core-info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--light-lavender);
  margin-bottom: 2rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border: 1px solid var(--light-mint);
}

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

.faq-answer {
  color: #757575;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 2px solid var(--light-peach);
}

.form-control {
  border: 2px solid var(--light-mint);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 0.2rem rgba(67, 189, 162, 0.25);
}

.btn-primary {
  background: var(--primary-coral);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-coral);
  transform: translateY(-2px);
}

/* Gallery */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
  background: var(--primary-coral);
  color: white;
  padding: 50px 0 20px;
}

.footer h5 {
  color: var(--light-peach);
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: white;
}

/* Responsive Design */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 20px 0;
  background: var(--light-lavender);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

/* Utilities */
.text-primary-coral { color: var(--primary-coral); }
.text-primary-mint { color: var(--primary-mint); }
.text-primary-lavender { color: var(--primary-lavender); }
.text-primary-peach { color: var(--primary-peach); }
.text-primary-sky { color: var(--primary-sky); }

.bg-light-coral { background-color: var(--light-coral); }
.bg-light-mint { background-color: var(--light-mint); }
.bg-light-lavender { background-color: var(--light-lavender); }
.bg-light-peach { background-color: var(--light-peach); }
.bg-light-sky { background-color: var(--light-sky); } 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
