@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.0/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 Variables - 5 Primary Colors + Shades */
:root {
  --primary-navy: #1e3a8a;
  --primary-gold: #d97706;
  --primary-emerald: #059669;
  --primary-slate: #475569;
  --primary-crimson: #dc2626;
  
  /* Light Shades */
  --light-navy: #3b82f6;
  --light-gold: #fbbf24;
  --light-emerald: #10b981;
  --light-slate: #64748b;
  --light-crimson: #ef4444;
  
  /* Dark Shades */
  --dark-navy: #1e40af;
  --dark-gold: #b45309;
  --dark-emerald: #047857;
  --dark-slate: #334155;
  --dark-crimson: #b91c1c;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8fafc;
  --medium-gray: #e2e8f0;
  --dark-gray: #1e293b;
  
  /* Conservative Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-sm); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header & Navigation */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 700;
  color: var(--primary-navy) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  box-shadow: 0 2px 15px rgba(30, 58, 138, 0.1);
  padding: 0.75rem 0;
}

.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-navy) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--light-navy) 50%, var(--primary-emerald) 100%);
  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 {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-navy);
  font-size: var(--font-size-2xl);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
  font-size: var(--font-size-lg);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-slate);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(30, 58, 138, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
}

.card-body {
  padding: 2rem;
}

/* Services Cards */
.services-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  margin-bottom: 2rem;
}

.services-card .card-title {
  color: var(--primary-navy);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.services-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.services-features {
  list-style: none;
  padding: 0;
}

.services-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.services-features li:last-child {
  border-bottom: none;
}

.services-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-emerald);
  margin-right: 0.5rem;
}

/* Team Cards */
.team-card {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  text-align: center;
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-gold);
}

.team-name {
  color: var(--primary-navy);
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-slate);
  font-size: var(--font-size-sm);
}

/* Reviews/Testimonials */
.review-card {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--light-navy) 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem;
  position: relative;
}

.review-card:before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 3rem;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  opacity: 0.2;
}

.review-text {
  font-size: var(--font-size-lg);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--light-gold);
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.form-control {
  border: 2px solid var(--medium-gray);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-emerald) 100%);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-emerald) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--primary-slate);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(30, 58, 138, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Blog Section */
.blog-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-navy);
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--primary-slate);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--dark-gold);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-navy) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--light-gold);
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
}

.footer-desc {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: var(--light-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
}

.footer-copyright {
  opacity: 0.7;
  font-size: var(--font-size-sm);
}

/* Contact Info */
.contact-info {
  background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--light-emerald) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.contact-info h5 {
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-info p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

/* Price Plans */
.price-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-emerald) 100%);
  color: var(--white);
  transform: scale(1.05);
}

.price-amount {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--white);
}

.process-title {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--primary-gold);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:before {
  content: '';
  width: 15px;
  height: 15px;
  background: var(--primary-gold);
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 0;
}

.timeline-title {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Utility Classes */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-emerald) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.text-primary-custom {
  color: var(--primary-navy) !important;
}

.text-gold {
  color: var(--primary-gold) !important;
}

.text-emerald {
  color: var(--primary-emerald) !important;
}

/* Swiper Customization */
.swiper {
  padding-bottom: 2rem;
}

.swiper-pagination-bullet {
  background: var(--primary-gold);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-navy);
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  color: var(--primary-slate);
} 


/* 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;
    }
}
