/* Services Page Specific Styles */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Services Hero Section */
.services-hero {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(135deg, #372406, #473606);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 80px;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/service1.jpg') no-repeat center center/cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(211, 84, 0, 0.1));
}

.services-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 20px;
  line-height: 1.2;
  animation: slideUpFade 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin: 0;
  animation: slideUpFade 1s ease-out 0.3s both;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* Services Overview */
.services-overview {
  background: var(--light-bg);
}

.overview-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.overview-content h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin: 0 0 20px;
  line-height: 1.3;
}

.lead {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.services-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 24px;
}

.stat-content {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* Main Services */
.main-services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.02);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.service-number {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--accent);
  font-size: 18px;
}

.service-content {
  padding: 30px;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.service-header h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 0;
  font-weight: 700;
}

.service-badge {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.feature-item i {
  color: var(--accent);
  font-size: 14px;
}

.feature-item span {
  color: var(--muted);
  font-size: 14px;
}

.service-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.price-range {
  font-weight: 600;
  color: var(--accent);
  font-size: 16px;
}

.service-btn {
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.service-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* Event Types */
.event-types {
  background: var(--light-bg);
}

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.event-type {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: var(--transition);
}

.event-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
}

.event-type h4 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin: 0 0 15px;
  font-weight: 600;
}

.event-type p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-type ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.event-type li {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.event-type li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Process Section */
.process-section {
  background: white;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.process-text h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin: 0 0 20px;
  line-height: 1.3;
}

.process-steps {
  margin-top: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-weight: 600;
}

.step-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.process-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(211, 84, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-badge {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-weight: 600;
}

.process-badge i {
  color: var(--accent);
  font-size: 18px;
}

/* Gallery Section */
.gallery-section {
  background: var(--light-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content h4 {
  color: white;
  margin: 0 0 5px;
  font-weight: 600;
}

.gallery-content p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 14px;
}

/* Pricing Section */
.pricing-section {
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(211, 84, 0, 0.15);
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 0 0 10px;
  font-weight: 700;
}

.pricing-badge {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-price {
  margin-bottom: 30px;
}

.currency {
  font-size: 1.25rem;
  color: var(--muted);
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.period {
  color: var(--muted);
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

.pricing-features {
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pricing-features .feature i {
  color: var(--accent);
  font-size: 14px;
}

.pricing-features .feature span {
  color: var(--muted);
  font-size: 14px;
}

.pricing-btn {
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  width: 100%;
}

.pricing-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(211, 84, 0, 0.1);
  border-radius: 12px;
}

.pricing-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-note i {
  color: var(--accent);
  margin-right: 8px;
}

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, var(--primary-dark), #472c06);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin: 0 0 20px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0 0 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-buttons .btn-primary {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
}

.cta-buttons .btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.cta-note {
  margin-top: 20px;
}

.cta-note p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .process-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-image {
    order: -1;
  }
  
  .process-image img {
    height: 400px;
  }
  
  .services-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
  
  .services-hero {
    min-height: 50vh;
    margin-top: 70px;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .overview-content h2 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1.125rem;
  }
  
  .services-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .event-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
  }
  
  .gallery-item {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    margin-top: 60px;
    min-height: 40vh;
    padding: 20px 0;
  }
  
  .services-hero .hero-content {
    padding: 20px 15px;
  }
  
  .page-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 60px 15px;
  }
  
  .overview-content h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }
  
  .lead {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .services-stats {
    margin-top: 30px;
  }
  
  .stat-item {
    padding: 25px 15px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .services-grid {
    gap: 20px;
  }
  
  .service-card {
    margin: 0 5px;
  }
  
  .service-image {
    height: 200px;
  }
  
  .service-content {
    padding: 25px 20px;
  }
  
  .service-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .service-pricing {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .event-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .event-type {
    padding: 25px 20px;
  }
  
  .event-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .process-text h2 {
    font-size: 1.75rem;
  }
  
  .process-step {
    gap: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .process-image img {
    height: 300px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-item {
    height: 250px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card {
    padding: 25px 20px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }
  
  .cta-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-buttons .btn {
    width: 200px;
    justify-content: center;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    margin-top: 60px;
    min-height: 35vh;
  }
  
  .page-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section {
    padding: 40px 10px;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .section-title p {
    font-size: 13px;
    padding: 0 5px;
  }
  
  .overview-content h2 {
    font-size: 1.5rem;
  }
  
  .lead {
    font-size: 0.9rem;
  }
  
  .stat-item {
    padding: 20px 15px;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .service-image {
    height: 180px;
  }
  
  .service-content {
    padding: 20px 15px;
  }
  
  .service-header h3 {
    font-size: 1.25rem;
  }
  
  .service-badge {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .feature-item span {
    font-size: 13px;
  }
  
  .event-type {
    padding: 20px 15px;
  }
  
  .event-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .event-type h4 {
    font-size: 1.125rem;
  }
  
  .event-type p {
    font-size: 14px;
  }
  
  .event-type li {
    font-size: 13px;
  }
  
  .process-text h2 {
    font-size: 1.5rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .step-content h4 {
    font-size: 14px;
  }
  
  .step-content p {
    font-size: 13px;
  }
  
  .process-image img {
    height: 250px;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .pricing-card {
    padding: 20px 15px;
  }
  
  .pricing-header h3 {
    font-size: 1.25rem;
  }
  
  .amount {
    font-size: 2rem;
  }
  
  .pricing-features .feature span {
    font-size: 13px;
  }
  
  .pricing-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
  }
  
  .cta-buttons .btn {
    width: 180px;
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .cta-note p {
    font-size: 12px;
  }
  
  .breadcrumb {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

/* Animation enhancements */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure no overlapping with mobile navigation */
@media (max-width: 768px) {
  body {
    padding-top: 0;
  }
  
  .services-hero {
    margin-top: 60px;
  }
  
  /* Ensure mobile menu doesn't overlap content */
  .mobile-menu.active {
    z-index: 1500;
  }
  
  .nav {
    z-index: 1000;
  }
}
