/* ===== BALLOON DECOR - MAIN CSS ===== */

/* CSS Variables for Color Palette */
:root {
  --color-primary: #ff6b9d;
  --color-primary-light: #ffb3d1;
  --color-primary-dark: #e04876;
  
  --color-secondary: #4ecdc4;
  --color-secondary-light: #8eddd8;
  --color-secondary-dark: #3aa99f;
  
  --color-accent: #ffd93d;
  --color-accent-light: #ffeb7a;
  --color-accent-dark: #e6c436;
  
  --color-elegant: #6c5ce7;
  --color-elegant-light: #a29bfe;
  --color-elegant-dark: #5a4fcf;
  
  --color-warm: #fd79a8;
  --color-warm-light: #fdcb6e;
  --color-warm-dark: #e84393;
  
  --color-light: #f8f9fa;
  --color-dark: #2d3436;
  --color-gray: #636e72;
  --color-white: #ffffff;
  
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-warm));
  --gradient-elegant: linear-gradient(135deg, var(--color-elegant), var(--color-primary));
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--color-dark);
  overflow-x: hidden;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-gray);
}

/* Header & Navigation */
.navbar {
  background: var(--gradient-primary) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--color-white) !important;
}

.navbar-nav .nav-link {
  color: var(--color-white) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-accent) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-elegant);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../YOG_images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
}

/* Decorative Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 25%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--color-light);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-item i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--color-white);
}

.service-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 1rem 0;
}

/* Price Plans */
.priceplan {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.priceplan .section-title h2,
.priceplan .section-title p {
  color: var(--color-white);
}

.price-card {
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team {
  background: var(--color-light);
}

.team-member {
  text-align: center;
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--color-primary);
}

/* Reviews/Testimonials */
.reviews {
  background: var(--color-white);
}

.review-item {
  background: var(--color-light);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.review-item::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-primary);
  position: absolute;
  top: -10px;
  left: 20px;
}

/* Gallery */
.gallery {
  background: var(--color-light);
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* FAQ */
.faq {
  background: var(--color-white);
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--color-light);
  border: none;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.faq-answer {
  padding: 1rem 1.5rem;
  background: var(--color-white);
  border-radius: 0 0 10px 10px;
  display: none;
}

/* Blog */
.blog {
  background: var(--color-light);
}

.blog-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Contact Form */
.contact {
  background: var(--gradient-elegant);
  color: var(--color-white);
}

.contact .section-title h2,
.contact .section-title p {
  color: var(--color-white);
}

.form-control {
  border: none;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.9);
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.3);
  background: var(--color-white);
}

.btn-primary {
  background: var(--gradient-accent);
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

.bg-gradient-elegant {
  background: var(--gradient-elegant);
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* Custom Buttons */
.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
  color: white;
} 


/* 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;
    }
}
