/* 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://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Color Palette - 5 Primary Colors + Shades */
:root {
  --primary-burgundy: #7e0001;
  --primary-burgundy-light: #b22827;
  --primary-burgundy-dark: #640b08;
  
  --primary-gold: #d49d27;
  --primary-gold-light: #ffd770;
  --primary-gold-dark: #cb9f32;
  
  --primary-forest: #426346;
  --primary-forest-light: #58772f;
  --primary-forest-dark: #294c2a;
  
  --primary-cream: #eae5c2;
  --primary-cream-light: #FEFEF2;
  --primary-cream-dark: #cccdb1;
  
  --primary-slate: #2e5756;
  --primary-slate-light: #5e6f81;
  --primary-slate-dark: #182829;
  
  --gradient-hero: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-forest) 100%);
  --gradient-services: linear-gradient(45deg, var(--primary-gold) 0%, var(--primary-cream) 100%);
  --gradient-footer: linear-gradient(180deg, var(--primary-slate-dark) 0%, var(--primary-slate) 100%);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-slate-dark);
  background-color: var(--primary-cream);
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.47rem !important;
  font-weight: 600;
}

h1 {
  font-size: 2.33rem;
  font-weight: 700;
}

h2 {
  font-size: 1.87rem;
  font-weight: 600;
}

h3 {
  font-size: 1.47rem;
  font-weight: 500;
}

p {
  font-size: 1.03rem;
  margin-bottom: 1.08rem;
}

/* Prefers 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;
  }
}

/* Header */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(17px);
  box-shadow: 0 7px 21px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-burgundy) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--primary-slate) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-burgundy) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 2.55rem;
  font-weight: 700;
  margin-bottom: 1.08rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.40rem;
  margin-bottom: 1.73rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.12rem;
  margin-bottom: 2.24rem;
  opacity: 0.8;
}

/* Decorative Elements */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(234, 201, 41, 0.20);
  z-index: 1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.05rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.08rem;
  color: var(--primary-burgundy);
}

.section-subtitle {
  font-size: 1.22rem;
  text-align: center;
  margin-bottom: 1.08rem;
  color: var(--primary-slate);
}

.section-desc {
  text-align: center;
  margin-bottom: 3.13rem;
  color: var(--primary-slate);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--primary-cream-light);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 19px;
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2.24rem;
}

.feature-card:hover {
  transform: translateY(-11px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3.10rem;
  color: var(--primary-gold);
  margin-bottom: 1.08rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-services);
  color: var(--primary-slate-dark);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 19px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.24rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.73rem;
}

.service-name {
  font-size: 1.47rem;
  font-weight: 600;
  margin-bottom: 1.08rem;
  color: var(--primary-burgundy);
}

.service-price {
  font-size: 1.87rem;
  font-weight: 700;
  color: var(--primary-gold-dark);
  margin-bottom: 1.08rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.73rem;
}

.service-features li {
  padding: 0.3rem 0;
  color: var(--primary-slate);
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-forest);
  margin-right: 0.5rem;
}

/* Features Section */
.features-section {
  background: white;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--primary-cream);
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.24rem;
  position: relative;
  overflow: hidden;
}

.price-card:nth-child(2) {
  transform: scale(1.05);
  border: 3px solid var(--primary-gold);
}

.price-card:nth-child(2)::before {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-gold);
  color: white;
  padding: 5px 40px;
  font-size: 0.87rem;
  font-weight: 600;
  transform: rotate(45deg);
}

/* Team Section */
.team-section {
  background: var(--primary-slate-dark);
  color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 2.24rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 5px solid var(--primary-gold);
  transition: transform 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.1);
}

.team-name {
  font-size: 1.40rem;
  font-weight: 600;
  margin-bottom: 0.59rem;
  color: var(--primary-gold);
}

.team-role {
  color: var(--primary-cream);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: var(--primary-cream-light);
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.24rem;
  position: relative;
}

.review-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2.05rem;
  color: var(--primary-gold);
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.08rem;
  color: var(--primary-slate);
}

.review-author {
  font-weight: 600;
  color: var(--primary-burgundy);
  text-align: right;
}

/* Swiper Customization */
.swiper {
  padding-bottom: 3.24rem;
}

.swiper-pagination-bullet {
  background: var(--primary-burgundy);
}

.swiper-pagination-bullet-active {
  background: var(--primary-gold);
}

/* Case Study Section */
.casestudy-section {
  background: white;
}

.case-card {
  background: var(--primary-cream);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--primary-burgundy);
  margin-bottom: 2.24rem;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateX(10px);
}

/* Process Section */
.process-section {
  background: var(--gradient-hero);
  color: white;
}

.process-step {
  text-align: center;
  margin-bottom: 2.24rem;
  position: relative;
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--primary-gold);
  color: var(--primary-slate-dark);
  border-radius: 50%;
  line-height: 60px;
  font-weight: 700;
  font-size: 1.59rem;
  margin-bottom: 1.08rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--primary-cream);
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.24rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary-burgundy);
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 15px;
  bottom: -15px;
  width: 1px;
  background: var(--primary-burgundy);
}

.timeline-item:last-child::after {
  display: none;
}

/* Career Section */
.career-section {
  background: white;
}

.job-card {
  background: var(--primary-cream);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2.24rem;
  border-top: 4px solid var(--primary-forest);
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--primary-slate-dark);
  color: white;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2.24rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
  font-size: 2.55rem;
  color: var(--primary-gold);
  margin-bottom: 1.08rem;
}

/* Contact Section */
.contact-section {
  background: var(--primary-cream-light);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--primary-cream-dark);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.08rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-burgundy);
  box-shadow: 0 0 0 0.2rem rgba(115, 9, 19, 0.25);
}

.btn-submit {
  background: var(--gradient-hero);
  border: none;
  color: white;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.12rem;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(119, 0, 18, 0.30);
}

.contact-info {
  background: var(--primary-burgundy);
  color: white;
  padding: 3rem;
  border-radius: 20px;
}

.contact-info h4 {
  color: var(--primary-gold);
  margin-bottom: 2.24rem;
}

.contact-info p {
  margin-bottom: 1.08rem;
  font-size: 1.12rem;
}

.contact-info i {
  color: var(--primary-gold);
  margin-right: 1rem;
  width: 20px;
}

/* Blog Section */
.blog-section {
  background: white;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.24rem;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  font-size: 1.40rem;
  font-weight: 600;
  margin-bottom: 1.08rem;
  color: var(--primary-burgundy);
}

.blog-excerpt {
  color: var(--primary-slate);
  margin-bottom: 1.73rem;
}

.blog-link {
  color: var(--primary-gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--primary-burgundy);
}

/* FAQ Section */
.faq-section {
  background: var(--primary-cream);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.08rem;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--primary-burgundy);
  color: white;
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: var(--primary-burgundy-light);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.59rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--primary-slate);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: var(--primary-slate-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--gradient-footer);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  padding-bottom: 2.09rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
  font-size: 1.59rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1.08rem;
}

.footer-desc {
  color: var(--primary-cream);
  margin-bottom: 2.24rem;
}

.footer-section h5 {
  color: var(--primary-gold);
  margin-bottom: 1.73rem;
}

.footer-section a {
  color: var(--primary-cream);
  text-decoration: none;
  display: block;
  margin-bottom: 0.59rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  padding-top: 2.11rem;
  text-align: center;
}

.footer-copyright {
  color: var(--primary-cream);
  font-size: 1.01rem;
}

/* Breadcrumbs */
.breadcrumb-section {
  background: var(--primary-cream);
  padding: 2rem 0;
}

.breadcrumb-image {
  width: 100%;
  max-width: 200px;
  height: 50px;
  object-fit: contain;
}

/* Additional Page Styling */
.page-section {
  padding: 4rem 0;
}

.page-section:nth-child(even) {
  background: var(--primary-cream-light);
}

.element-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.24rem;
  transition: transform 0.3s ease;
}

.element-card:hover {
  transform: translateY(-5px);
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.05rem;
  text-align: center;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
