/* ===== BOOTSTRAP 5 & EXTERNAL LIBRARIES ===== */
@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');

/* ===== CUSTOM COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --primary-orange: #ff6b35;
  --primary-navy: #2c3e50;
  --primary-teal: #16a085;
  --primary-gold: #f39c12;
  --primary-slate: #34495e;
  
  /* Light Shades */
  --light-orange: #ff8f65;
  --light-navy: #465669;
  --light-teal: #48c9b0;
  --light-gold: #f5b041;
  --light-slate: #566573;
  
  /* Dark Shades */
  --dark-orange: #e55a2b;
  --dark-navy: #1f2937;
  --dark-teal: #138d75;
  --dark-gold: #d68910;
  --dark-slate: #2c3e50;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #495057;
  --black: #212529;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-slate);
  background-color: var(--white);
}

/* ===== CONSERVATIVE TYPOGRAPHY ===== */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-slate);
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-slate);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.8rem 0;
}

.navbar-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--light-gray) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-orange) !important;
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 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.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background-color: var(--light-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 1rem 0;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* ===== PRICE PLANS ===== */
.price-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: scale(1.05);
}

.price-card.featured {
  border: 3px solid var(--primary-orange);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 1rem 0;
}

/* ===== TEAM SECTION ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-orange);
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials-slider {
  margin-top: 3rem;
}

.testimonial-slide {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: 1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark-slate);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-navy);
}

/* ===== FAQ SECTION ===== */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-navy);
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid var(--light-slate);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--light-gray);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}

/* ===== UTILITIES ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== MEDIA QUERIES ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .services-grid,
  .features-grid,
  .price-plans,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 3rem 0;
  }
}
