/* Bootstrap 5 Integration & Custom Variables */
@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.4.0/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');

:root {
  /* Primary Color Palette - Analog Photo Theme */
  --primary-sepia: #803b1d;
  --primary-charcoal: #2f2d2d;
  --primary-cream: #fdfff0;
  --primary-amber: #ba771c;
  --primary-silver: #c8b7b8;
  
  /* Light Shades */
  --sepia-light: #d3743c;
  --charcoal-light: #424141;
  --cream-light: #FFFEF7;
  --amber-light: #fd7a0d;
  --silver-light: #ffffff;
  
  /* Dark Shades */
  --sepia-dark: #644618;
  --charcoal-dark: #252323;
  --cream-dark: #f6f4dd;
  --amber-dark: #cc7e0b;
  --silver-dark: #909090;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-sepia), var(--primary-amber));
  --gradient-secondary: linear-gradient(135deg, var(--primary-charcoal), var(--charcoal-light));
  --gradient-accent: linear-gradient(135deg, var(--primary-cream), var(--cream-light));
}

/* 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;
  }
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--cream-light);
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: 1.53rem !important;
  font-weight: 600;
  color: var(--primary-sepia) !important;
}

h1 { font-size: 2.62rem; font-weight: 700; }
h2 { font-size: 2.08rem; font-weight: 600; }
h3 { font-size: 1.83rem; font-weight: 600; }
h4 { font-size: 1.53rem; font-weight: 500; }
h5 { font-size: 1.30rem; font-weight: 500; }
p { font-size: 1.09rem; line-height: 1.6; }

/* Header Styles */
.navbar {
  background: linear-gradient(90deg, var(--cream-light), var(--primary-cream)) !important;
  box-shadow: 0 7px 17px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sepia) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-primary);
  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.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: white;
}

.hero-decorative {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 20%;
  right: 10%;
  z-index: 1;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.15rem;
}

.service-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 16px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--silver-light);
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 23px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.74rem;
}

.service-price {
  font-size: 1.53rem;
  font-weight: 700;
  color: var(--primary-amber);
  margin-top: 1.09rem;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.05rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--gradient-accent);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
}

.feature-icon {
  font-size: 3.07rem;
  color: var(--primary-sepia);
  margin-bottom: 1.18rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.05rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-amber);
}

/* Reviews/Testimonials */
.swiper-container {
  padding: 2rem 0;
}

.review-slide {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.review-stars {
  color: var(--primary-amber);
  font-size: 1.30rem;
  margin-bottom: 1.18rem;
}

/* Contact Form */
.contact-section {
  background: var(--gradient-secondary);
  color: white;
  padding: 4rem 0;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-control {
  border: 2px solid var(--silver-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.18rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sepia);
  box-shadow: 0 0 0 0.2rem rgba(141, 84, 14, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* FAQ Section */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.18rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--primary-cream);
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--primary-charcoal);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--cream-dark);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--charcoal-light);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.05rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  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;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2.05rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--gradient-secondary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-amber);
  margin-bottom: 1.18rem;
}

.footer a {
  color: var(--silver-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-amber);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

/* Price Plans */
.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.05rem;
}

.priceplan-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.priceplan-card:hover {
  transform: translateY(-5px);
}

.priceplan-card.featured {
  border: 3px solid var(--primary-amber);
  transform: scale(1.05);
}

.priceplan-price {
  font-size: 2.62rem;
  font-weight: 700;
  color: var(--primary-sepia);
  margin: 1rem 0;
}

/* Utility Classes */
.section-padding {
  padding: 4rem 0;
}

.text-sepia { color: var(--primary-sepia); }
.text-amber { color: var(--primary-amber); }
.bg-cream { background-color: var(--primary-cream); }
.bg-silver { background-color: var(--primary-silver); }

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.08rem;
  color: var(--primary-charcoal);
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
