/* ===== MICRO-VACATION PLANNING AGENCY TEMPLATE ===== */
/* Bootstrap 5 Integration - NO OVERRIDES ALLOWED */

/* Color Palette - 5 Primary Pastel High-Contrast Colors */
:root {
  --primary-coral: #e95b64;
  --primary-coral-light: #ffcccf;
  --primary-coral-dark: #ee6d77;
  
  --primary-mint: #5de1d0;
  --primary-mint-light: #9feedc;
  --primary-mint-dark: #49a8a6;
  
  --primary-lavender: #9481e6;
  --primary-lavender-light: #ced1ff;
  --primary-lavender-dark: #978dfc;
  
  --primary-peach: #ffc862;
  --primary-peach-light: #ffbc96;
  --primary-peach-dark: #fda043;
  
  --primary-sage: #78e382;
  --primary-sage-light: #a9e4b6;
  --primary-sage-dark: #65c072;
  
  --neutral-white: #FFFFFF;
  --neutral-light: #F8F9FA;
  --neutral-medium: #69777e;
  --neutral-dark: #181a1d;
  --neutral-black: #000000;
}

/* Conservative Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
}

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

/* Conservative Heading Sizes */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

h5 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Section Spacing */
.section-padding {
  padding: 4rem 0;
}

.section-padding-lg {
  padding: 6rem 0;
}

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

.hero-decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-coral);
  top: 10%;
  right: -150px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-peach);
  bottom: 20%;
  left: -100px;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  background: var(--primary-sage);
  top: 60%;
  right: 10%;
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

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

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 10px;
  background: var(--neutral-white);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-card img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

/* Price Plan Cards */
.price-card {
  border: 2px solid var(--neutral-light);
  border-radius: 15px;
  text-align: center;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-coral);
}

.price-card.featured {
  border-color: var(--primary-coral);
  position: relative;
}

.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-coral);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

/* Review Cards */
.review-card {
  background: var(--neutral-white);
  border: none;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.review-stars {
  color: #ffbc00;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

/* Contact Form */
.contact-form {
  background: var(--neutral-white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--neutral-light);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(248, 89, 91, 0.25);
}

.btn-primary {
  background-color: var(--primary-coral);
  border-color: var(--primary-coral);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* Gallery */
.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px 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 - High Contrast Colors Only (No Gradients) */
.footer {
  background-color: var(--neutral-dark);
  color: var(--neutral-white);
  padding: 3rem 0 1rem;
}

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

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

.footer a:hover {
  color: var(--primary-coral);
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--neutral-light);
}

.breadcrumb-image {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.blog-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* Case Study Cards */
.casestudy-card {
  background: var(--neutral-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Items */
.timeline-item {
  background: var(--neutral-white);
  border-left: 4px solid var(--primary-coral);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Career Cards */
.career-card {
  background: var(--neutral-white);
  border: 2px solid var(--neutral-light);
  border-radius: 15px;
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-coral);
}

/* Core Info Cards */
.coreinfo-card {
  text-align: center;
  padding: 2rem;
  background: var(--neutral-white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

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

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-coral);
  outline-offset: 2px;
} 

.hero-content {
    padding-top: 200px;
}


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

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