/* Bootstrap 5 CDN Import */
@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');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables - Color Palette */
:root {
  --primary-orange: #e86237;
  --primary-orange-light: #ff8a5b;
  --primary-orange-dark: #cc5a28;
  
  --primary-green: #417f54;
  --primary-green-light: #627f69;
  --primary-green-dark: #284e30;
  
  --primary-cream: #faf6f0;
  --primary-cream-light: #fcf9f5;
  --primary-cream-dark: #ede6da;
  
  --primary-brown: #8f4208;
  --primary-brown-light: #aa6733;
  --primary-brown-dark: #5a2a05;
  
  --primary-gold: #d7b845;
  --primary-gold-light: #cca347;
  --primary-gold-dark: #c0a81b;
  
  --text-dark: #403c3c;
  --text-light: #5e6366;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.65rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.34rem; }
h5 { font-size: 1.13rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Prefers 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 */
.navbar {
  background: linear-gradient(135deg, var(--primary-cream), var(--primary-cream-light));
  box-shadow: 0 6px 23px var(--shadow);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.51rem;
  font-weight: 700;
  color: var(--primary-orange) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-orange) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-cream-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, var(--primary-orange-light), transparent);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 21px;
  box-shadow: 0 20px 60px var(--shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--white);
}

.feature-card {
  background: var(--primary-cream);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 16px 40px var(--shadow);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-cream-light), var(--primary-cream));
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 11px 30px var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.67rem;
}

.price-tag {
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: var(--white);
}

.team-card {
  background: var(--primary-cream);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-orange);
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
  color: var(--white);
}

.review-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin: 1rem;
}

.review-stars {
  color: var(--primary-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background-color: var(--white);
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  background: var(--primary-orange);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.56rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--primary-cream);
}

/* Interactive FAQ Cards */
.faq-card-interactive {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: all 0.3s ease;
}

.faq-card-interactive:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--shadow);
}

/* Hide the checkbox */
.faq-toggle {
  display: none;
}

/* Style the question label */
.faq-question {
  background: var(--primary-orange);
  color: var(--white);
  padding: 1.5rem;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-size: 1.1rem;
}

.faq-question:hover {
  background: var(--primary-orange-dark);
}

/* Style the plus/minus icon */
.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}

/* Answer section */
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--white);
}

.faq-answer p {
  padding: 1.5rem 0;
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
}

/* When checkbox is checked - show answer and rotate icon */
.faq-toggle:checked + .faq-question + .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem;
}

.faq-toggle:checked + .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-toggle:checked + .faq-question {
  background: var(--primary-green);
}

/* Accessibility */
.faq-question:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 1rem 0;
  }
  
  .faq-icon {
    font-size: 1.3rem;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-brown-light), var(--primary-cream));
  color: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.contact-form .form-control {
  border: 2px solid var(--primary-cream);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(236, 74, 55, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer a {
  color: var(--primary-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-orange);
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 1.63rem;
}

/* Utilities */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.23rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
}

.text-primary-orange {
  color: var(--primary-orange) !important;
}

.text-primary-green {
  color: var(--primary-green) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.81rem; }
  
  .navbar-brand {
    font-size: 1.37rem;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .feature-card, .service-card, .team-card {
    margin-bottom: 2rem;
  }
}



/* Timeline Styles */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-orange);
}

.timeline-item {
  position: relative;
  padding: 2rem 0 2rem 2rem;
  margin-bottom: 2rem;
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 2rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-orange);
  border: 3px solid var(--white);
}

.timeline-item h4 {
  color: var(--primary-orange);
  margin-bottom: 0.60rem;
}

/* Custom Bootstrap Grid Classes */
.col-lg-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 991.98px) {
  .col-lg-2-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 767.98px) {
  .col-lg-2-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  .col-lg-2-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Enhanced Button Styles */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

.btn-primary.btn-sm {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
  border: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 90, 65, 0.30);
}

/* Blog Section Enhancements */
.blog-section .service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow);
}

/* Additional Responsive Fixes */
@media (max-width: 768px) {
  .timeline {
    padding-left: 1rem;
  }
  
  .timeline::before {
    left: 8px;
  }
  
  .timeline-item::before {
    left: -1.75rem;
  }
  
  .timeline-item {
    padding: 1.5rem;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
