/* Import Bootstrap 5 */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');

/* Color Palette - 5 Primary Colors */
:root {
  --primary-orange: #ff844d;
  --primary-purple: #683cf4;
  --primary-teal: #2eb18f;
  --primary-coral: #ff4432;
  --primary-indigo: #3c4eb6;
  
  /* Light shades */
  --light-orange: #ffb996;
  --light-purple: #cab8ee;
  --light-teal: #6dbdb6;
  --light-coral: #ff998e;
  --light-indigo: #9cb2eb;
  
  /* Dark shades */
  --dark-orange: #f54200;
  --dark-purple: #4126a7;
  --dark-teal: #00765a;
  --dark-coral: #d33c12;
  --dark-indigo: #1e2c78;
  
  /* Additional colors */
  --white: #ffffff;
  --black: #2a2a2a;
  --gray-light: #f8f9fa;
  --gray-medium: #576165;
  --gray-dark: #404a53;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18.00px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

/* Conservative font sizes */
.navbar-brand {
  font-size: 1.63rem !important;
  font-weight: 700;
  color: var(--primary-orange) !important;
}

h1 {
  font-size: 2.58rem;
  font-weight: 700;
  margin-bottom: 1.23rem;
}

h2 {
  font-size: 2.04rem;
  font-weight: 600;
  margin-bottom: 0.99rem;
}

h3 {
  font-size: 1.63rem;
  font-weight: 600;
  margin-bottom: 0.71rem;
}

p {
  font-size: 1.14rem;
  margin-bottom: 1.23rem;
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-coral)) !important;
  padding: 1rem 0;
  box-shadow: 0 7px 17px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-orange) !important;
  transform: translateY(-6px);
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-indigo));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3.62rem;
  font-weight: 800;
  margin-bottom: 1.73rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.33rem;
  margin-bottom: 2.05rem;
  opacity: 0.9;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-teal);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-coral);
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-21px) rotate(180deg); }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.09rem;
  color: var(--primary-purple);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 1.23rem;
}

/* About Section */
.about-section {
  background: var(--gray-light);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 17px;
  box-shadow: 0 8px 21px rgba(0,0,0,0.1);
  margin-bottom: 2.05rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 3.03rem;
  color: var(--primary-teal);
  margin-bottom: 1.23rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--light-purple), var(--light-indigo));
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 13px 30px rgba(0,0,0,0.1);
  margin-bottom: 2.05rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-coral));
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.73rem;
}

.service-price {
  font-size: 2.04rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background: var(--gray-light);
}

.team-card {
  background: var(--white);
  border-radius: 110px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2.05rem;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-teal);
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-indigo));
  color: var(--white);
}

.review-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2.05rem;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Price Plan Section */
.priceplan-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2.05rem;
  transition: all 0.3s ease;
  position: relative;
}

.priceplan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.priceplan-price {
  font-size: 2.58rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

/* Contact Section */
.contact-section {
  background: var(--gray-light);
}

.contact-form {
  background: var(--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(--gray-light);
  padding: 0.75rem 1rem;
  margin-bottom: 1.23rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 133, 77, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-coral));
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 105, 55, 0.40);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.accordion-item {
  border: none;
  margin-bottom: 1.23rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
  background: var(--gray-light);
  border: none;
  font-weight: 600;
  color: var(--primary-purple);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-orange);
  color: var(--white);
}

/* Gallery Section */
.gallery-section {
  background: var(--gray-light);
}

.gallery-item {
  margin-bottom: 2.05rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Section */
.blog-section {
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2.05rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-purple), var(--dark-indigo));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

/* Responsive Design - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile Optimizations */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.58rem;
  }
  
  .hero-subtitle {
    font-size: 1.16rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .navbar-brand {
    font-size: 1.33rem !important;
  }
}

/* Swiper Customization */
.swiper {
  padding-bottom: 3.25rem;
}

.swiper-pagination-bullet {
  background: var(--primary-orange);
}

.swiper-pagination-bullet-active {
  background: var(--primary-coral);
}

/* Space page specific */
#space {
  min-height: 80vh;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
} 


/* 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;
    }
}
