/* ===== BOOTSTRAP 5 INTEGRATION ===== */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ===== COLOR PALETTE ===== */
:root {
  --primary-color: #5f6eea;
  --primary-light: #95a4ff;
  --primary-dark: #4431b9;
  
  --secondary-color: #f07906;
  --secondary-light: #ffc534;
  --secondary-dark: #e97900;
  
  --accent-color: #f254a1;
  --accent-light: #ffa2c7;
  --accent-dark: #ea219c;
  
  --success-color: #1dc58b;
  --success-light: #75dbb8;
  --success-dark: #04aa5e;
  
  --info-color: #00b7c5;
  --info-light: #55ddfc;
  --info-dark: #0092ad;
  
  --text-dark: #2c3b4b;
  --text-light: #65676e;
  --text-muted: #93959e;
  --background-light: #f8fafc;
  --background-dark: #111524;
}

/* ===== 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(--text-dark);
  background-color: var(--background-light);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 { font-size: 2.64rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.56rem; }
h4 { font-size: 1.27rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.93rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1rem;
}

/* ===== NAVIGATION ===== */
.navbar-brand {
  font-size: 1.64rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  background-color: var(--accent-light);
  padding: 24px;
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

.hero-title {
  font-size: 3.52rem;
  font-weight: 700;
  margin-bottom: 1.55rem;
  text-shadow: 6px 2px 7px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.57rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.20rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.61rem;
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.31rem;
  color: var(--accent-color);
}

.section-description {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ABOUT SECTION ===== */
.about-feature {
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 7px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  color: var(--primary-color);
  font-size: 2.56rem;
  margin-bottom: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.services-item:hover {
  transform: translateY(-10px);
}

.services-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.services-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services-item .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.services-item .features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.services-item .features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.services-item .features li:last-child {
  border-bottom: none;
}

/* ===== FEATURES SECTION ===== */
.features-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 6px 6px rgba(0,0,0,0.1);
}

.features-item i {
  font-size: 3rem;
  color: var(--info-color);
  margin-bottom: 1rem;
}

/* ===== PRICE PLAN SECTION ===== */
.priceplan-item {
  background: white;
  border-radius: 15px;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.priceplan-item:hover {
  transform: scale(1.05);
}

.priceplan-item.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.1);
}

.priceplan-item .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.priceplan-item .features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.priceplan-item .features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.priceplan-item .features li:last-child {
  border-bottom: none;
}

/* ===== TEAM SECTION ===== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 7px solid var(--primary-light);
}

.team-member h4 {
  color: var(--primary-color);
  margin-bottom: 0.56rem;
}

.team-member p {
  color: var(--text-light);
  font-style: italic;
}

/* ===== REVIEWS SECTION ===== */
.reviews-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  position: relative;
}

.reviews-item::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.reviews-item .author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* ===== CASE STUDY SECTION ===== */
.casestudy-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 9px 20px rgba(0,0,0,0.1);
}

.casestudy-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== PROCESS SECTION ===== */
.process-item {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-section {
  counter-reset: step-counter;
}

/* ===== TIMELINE SECTION ===== */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 15px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--primary-light);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.74rem;
}

/* ===== CAREER SECTION ===== */
.career-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.career-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.career-item .role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== CORE INFO SECTION ===== */
.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 9px 6px rgba(0,0,0,0.1);
}

.coreinfo-item i {
  font-size: 2.59rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form .form-control {
  border: 2px solid #dee1ea;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(99, 106, 221, 0.25);
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
}

/* ===== BLOG SECTION ===== */
.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item .content {
  padding: 1.5rem;
}

.blog-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-item .excerpt {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-item .read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.blog-item .read-more:hover {
  text-decoration: underline;
}

/* ===== FAQ SECTION ===== */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-question {
  background: var(--primary-color);
  color: white;
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-light);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== GALLERY SECTION ===== */
.gallery-item {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.gallery-item a {
  text-decoration: none;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer p, .footer a {
  color: #b7b9be;
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-light);
}

.footer .copyright {
  border-top: 1px solid #51586a;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: transparent;
  padding: 2rem 0;
}

.breadcrumb img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

/* ===== SPACE PAGE ===== */
#space {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}

/* ===== UTILITIES ===== */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-custom {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.border-radius-custom {
  border-radius: 15px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVE HELPERS ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.62rem;
  }
  
  .hero-subtitle {
    font-size: 1.34rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
