/* ===== COLOR PALETTE & CSS VARIABLES ===== */
:root {
  /* Primary Colors */
  --primary-orange: #f6816d;
  --primary-green: #8fdd87;
  --primary-blue: #68c7f4;
  --primary-pink: #ffa7cb;
  --primary-yellow: #ead053;
  
  /* Light Shades */
  --light-orange: #ffceb9;
  --light-green: #ceeecd;
  --light-blue: #caeeff;
  --light-pink: #fff9fb;
  --light-yellow: #fff8dc;
  
  /* Dark Shades */
  --dark-orange: #ff3b2b;
  --dark-green: #4dbe41;
  --dark-blue: #2670de;
  --dark-pink: #ed1450;
  --dark-yellow: #f89901;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --gray: #8b8483;
  --dark-gray: #2d2929;
  --black: #252525;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
}

/* ===== TYPOGRAPHY ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--black);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

.text-small {
  font-size: var(--font-size-small);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  background-color: var(--primary-blue) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  background-color: var(--primary-blue) !important;
  background: var(--primary-blue) !important;
}

.navbar.scrolled {
  background-color: var(--primary-blue) !important;
  background: var(--primary-blue) !important;
}

.navbar-brand {
  font-size: 1.58rem !important;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-yellow) !important;
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-orange), var(--light-pink));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: var(--primary-yellow);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--primary-blue);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.55rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 1.58rem;
}

.hero-subtitle {
  font-size: 1.37rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.hero-image {
  border-radius: 24px;
  box-shadow: 0 24px 40px rgba(0,0,0,0.15);
  max-width: 100%;
  height: auto;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.53rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.17rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.service-card, .feature-card, .price-card, .team-card, .review-card, .faq-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover, .feature-card:hover, .price-card:hover, .team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card {
  border-top: 4px solid var(--primary-orange);
}

.feature-card {
  border-top: 4px solid var(--primary-green);
}

.price-card {
  border-top: 4px solid var(--primary-blue);
  position: relative;
}

.price-card.featured {
  border-top: 4px solid var(--primary-pink);
  transform: scale(1.05);
}

.price-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin: 1rem 0;
}

.team-card {
  text-align: center;
  border-top: 4px solid var(--primary-yellow);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1.64rem;
  object-fit: cover;
}

.review-card {
  border-left: 4px solid var(--primary-pink);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--light-pink);
  font-family: serif;
}

.faq-card {
  border-left: 4px solid var(--primary-blue);
}

/* ===== PROCESS NUMBERS ===== */
.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.58rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 148, 90, 0.30);
}

.btn-outline-primary {
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem 0;
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-gray);
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(240, 106, 73, 0.25);
}

/* ===== GALLERY ===== */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--dark-gray), var(--black));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 1.74rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-orange);
}

.footer .copyright {
  border-top: 1px solid var(--gray);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-container {
  padding: 100px 0 20px;
  background: var(--light-gray);
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ===== 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;
    scroll-behavior: auto !important;
  }
  
  .hero-section::before,
  .hero-section::after {
    animation: none;
  }
}

/* ===== UTILITIES ===== */
.bg-gradient-orange {
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
}

.bg-gradient-green {
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

.bg-gradient-blue {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
}

.bg-gradient-pink {
  background: linear-gradient(135deg, var(--primary-pink), var(--light-pink));
}

.bg-gradient-yellow {
  background: linear-gradient(135deg, var(--primary-yellow), var(--light-yellow));
}

.text-primary-orange { color: var(--primary-orange); }
.text-primary-green { color: var(--primary-green); }
.text-primary-blue { color: var(--primary-blue); }
.text-primary-pink { color: var(--primary-pink); }
.text-primary-yellow { color: var(--primary-yellow); }

.icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-orange);
}

.section-divider {
  height: 4px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
  width: 80px;
  margin: 2rem auto;
  border-radius: 2px;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
