/* ===== COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --primary-coral: #ff8783;
  --primary-sage: #afe4e7;
  --primary-cream: #F1FAEE;
  --primary-navy: #3c80a5;
  --primary-charcoal: #1d3660;
  
  /* Light Shades */
  --light-coral: #ffada7;
  --light-sage: #c5d6d7;
  --light-cream: #F8FDFD;
  --light-navy: #79a4b6;
  --light-charcoal: #51829a;
  
  /* Dark Shades */
  --dark-coral: #b45c5e;
  --dark-sage: #85b9bf;
  --dark-cream: #eaf9f1;
  --dark-navy: #396287;
  --dark-charcoal: #243c56;
}

/* ===== GENERAL STYLES ===== */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--primary-charcoal);
  line-height: 1.6;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-navy);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-charcoal);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-navy);
}

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

p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-sage) 100%);
  display: flex;
  align-items: center;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-blob-1 {
  top: 10%;
  right: 15%;
}

.hero-blob-2 {
  bottom: 20%;
  left: 10%;
  background: var(--primary-sage);
}

/* ===== SECTION SPACING ===== */
.section-padding {
  padding: 80px 0;
}

/* ===== CARDS ===== */
.service-card,
.feature-card,
.price-card,
.team-card,
.review-card,
.case-card,
.process-card,
.timeline-card,
.career-card,
.core-card,
.blog-card,
.faq-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.service-card:hover,
.feature-card:hover,
.price-card:hover,
.team-card:hover,
.case-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 63, 107, 0.10);
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

/* ===== PRICE PLAN CARDS ===== */
.price-card {
  background: white;
  border: 2px solid var(--light-sage);
  position: relative;
}

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

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
}

/* ===== TEAM CARDS ===== */
.team-card {
  background: white;
  text-align: center;
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

/* ===== REVIEW CARDS ===== */
.review-card {
  background: var(--light-cream);
  border-left: 4px solid var(--primary-coral);
}

/* ===== PROCESS CARDS ===== */
.process-card {
  background: white;
  border-top: 3px solid var(--primary-sage);
}

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

/* ===== TIMELINE CARDS ===== */
.timeline-card {
  background: white;
  border-left: 4px solid var(--primary-navy);
  position: relative;
}

.timeline-year {
  background: var(--primary-navy);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
}

/* ===== FAQ CARDS ===== */
.faq-card {
  background: white;
  border: 1px solid var(--light-sage);
  margin-bottom: 15px;
}

.faq-question {
  color: var(--primary-navy);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 40px;
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 12px 15px;
}

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

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

.btn-primary:hover {
  background: var(--dark-coral);
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-charcoal);
  color: var(--primary-cream);
}

footer h5 {
  color: var(--primary-coral);
}

footer a {
  color: var(--light-sage);
  text-decoration: none;
}

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

/* ===== GALLERY ===== */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

/* ===== BREADCRUMBS ===== */
.breadcrumb-container {
  padding: 20px 0;
  background: var(--light-cream);
}

.breadcrumb-image {
  width: 100%;
  max-width: 400px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 

.hero-section h1 {
    padding-top: 200px;
}


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

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

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
