/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  background: #1a1a2e;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffd700;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: white;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #ffd700;
  color: #1a1a2e;
}

.btn-primary:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: white;
  color: #1a1a2e;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image i {
  font-size: 15rem;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: #1a1a2e;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a2e;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid #ffd700;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.service-icon {
  background: #ffd700;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: #1a1a2e;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #1a1a2e;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: #1a1a2e;
  color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffd700;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image i {
  font-size: 12rem;
  color: #ffd700;
  opacity: 0.3;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-item i {
  background: #1a1a2e;
  color: #ffd700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-section p {
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.footer-section p i {
  margin-right: 0.5rem;
  color: #ffd700;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  opacity: 0.7;
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8rem 0 4rem;
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.nav-link.active {
  color: #ffd700 !important;
}

/* Services Detail Styles */
.services-detail {
  padding: 5rem 0;
  background: white;
}

.service-detail-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 15px;
  border-left: 5px solid #ffd700;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.service-detail-card:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.service-features li i {
  color: #ffd700;
  margin-right: 0.8rem;
  font-size: 0.9rem;
}

/* Emergency Services Styles */
.emergency-services {
  padding: 5rem 0;
  background: #1a1a2e;
  color: white;
}

.emergency-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.emergency-content h2 {
  color: #ffd700;
  margin-bottom: 1.5rem;
}

.emergency-features {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.emergency-feature {
  text-align: center;
  flex: 1;
}

.emergency-feature i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.emergency-feature h4 {
  margin-bottom: 0.5rem;
}

.emergency-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.emergency-image i {
  font-size: 8rem;
  color: #ffd700;
  opacity: 0.3;
}

/* Why Choose Us Styles */
.why-choose-us {
  padding: 5rem 0;
  background: #f8f9fa;
}

/* About Content Styles */
.about-content-section {
  padding: 5rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-content h2 {
  color: #1a1a2e;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.about-text-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-main-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.about-main-image i {
  font-size: 6rem;
  color: white;
}

/* Mission & Values Styles */
.mission-values {
  padding: 5rem 0;
  background: #f8f9fa;
}

.mission-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mission-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mission-icon i {
  font-size: 2rem;
  color: white;
}

.mission-card h3 {
  color: #1a1a2e;
  margin-bottom: 1rem;
}

/* Team Styles */
.team-section {
  padding: 5rem 0;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-member {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.team-image {
  background: linear-gradient(135deg, #667eea, #764ba2);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.team-image i {
  font-size: 3rem;
  color: white;
}

.team-member h4 {
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #ffd700;
  font-weight: bold;
  margin-bottom: 1rem;
}

.team-credentials {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-credentials span {
  font-size: 0.9rem;
  color: #666;
}

.team-credentials i {
  color: #ffd700;
  margin-right: 0.5rem;
}

/* Stats Section Styles */
.stats-section {
  padding: 5rem 0;
  background: #1a1a2e;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-icon {
  background: #ffd700;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon i {
  font-size: 2rem;
  color: #1a1a2e;
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ffd700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: block;
}

.stat-card p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Certifications Styles */
.certifications-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.certification-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-5px);
}

.cert-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.cert-icon i {
  font-size: 1.8rem;
  color: white;
}

/* Community Section Styles */
.community-section {
  padding: 5rem 0;
  background: white;
}

.community-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community-text h2 {
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.community-activities {
  margin-top: 2rem;
}

.activity {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.activity i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.activity h4 {
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.community-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-image i {
  font-size: 10rem;
  color: #ffd700;
  opacity: 0.3;
}

/* Contact Methods Styles */
.contact-methods {
  padding: 5rem 0;
  background: white;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-method-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.method-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.method-icon i {
  font-size: 2rem;
  color: white;
}

.contact-details {
  margin: 1.5rem 0;
  text-align: left;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

/* Contact Form Section Styles */
.contact-form-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.form-container {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.contact-form-main .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-main .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-main label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a2e;
}

.contact-form-main input,
.contact-form-main select,
.contact-form-main textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form-main input:focus,
.contact-form-main select:focus,
.contact-form-main textarea:focus {
  outline: none;
  border-color: #667eea;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

.btn-large {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.1rem;
}

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.benefits-list li i {
  color: #ffd700;
  margin-right: 0.8rem;
}

.service-areas-list {
  list-style: none;
  margin: 1rem 0;
}

.service-areas-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid #eee;
}

.emergency-card {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
}

.emergency-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.emergency-header i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.btn-emergency {
  background: white;
  color: #ff6b6b;
  border: 2px solid white;
  width: 100%;
  margin: 1rem 0;
}

.btn-emergency:hover {
  background: transparent;
  color: white;
}

/* FAQ Styles */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid #ffd700;
}

.faq-item h4 {
  color: #1a1a2e;
  margin-bottom: 1rem;
}

/* Map Styles */
.map-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.map-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  padding: 4rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-placeholder:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.map-icon i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* CTA Section Styles */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #1a1a2e;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image i {
    font-size: 8rem;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image i {
    font-size: 8rem;
  }

  .stats {
    justify-content: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 200px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
  }

  .container {
    padding: 0 15px;
  }

  /* Page-specific responsive styles */
  .page-header h1 {
    font-size: 2.5rem;
  }

  .about-grid,
  .emergency-content,
  .community-content,
  .contact-form-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .emergency-features {
    flex-direction: column;
    gap: 1rem;
  }

  .emergency-image i,
  .community-image i {
    font-size: 6rem;
  }

  .about-main-image {
    width: 200px;
    height: 200px;
  }

  .about-main-image i {
    font-size: 4rem;
  }

  .contact-form-main .form-row {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 250px;
  }
}

/* Gallery Page Styles */
.featured-slider {
  padding: 5rem 0;
  background: white;
}

.slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.slider-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}

.slide-image {
  width: 60%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-content {
  width: 40%;
  padding: 3rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #667eea 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.slide-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.slide-btn {
  align-self: flex-start;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: #1a1a2e;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #ffd700;
  transform: scale(1.2);
}

/* Gallery Categories */
.gallery-categories {
  padding: 3rem 0;
  background: #f8f9fa;
}

.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid #667eea;
  background: transparent;
  color: #667eea;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

/* Image Gallery Grid */
.image-gallery {
  padding: 5rem 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.gallery-item.loaded {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-info h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.gallery-view-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 215, 0, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #1a1a2e;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
}

.gallery-item:hover .gallery-view-btn {
  opacity: 1;
  transform: scale(1.1);
}

.load-more-container {
  text-align: center;
}

.load-more-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
}

.lightbox-image {
  max-width: 70%;
  height: auto;
  object-fit: cover;
}

.lightbox-info {
  padding: 2rem;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lightbox-info h3 {
  color: #1a1a2e;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.lightbox-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.lightbox-nav {
  display: flex;
  gap: 1rem;
}

.lightbox-nav-btn {
  flex: 1;
  padding: 10px 15px;
  border: 2px solid #667eea;
  background: transparent;
  color: #667eea;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav-btn:hover {
  background: #667eea;
  color: white;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #1a1a2e;
}

/* Gallery Stats */
.gallery-stats {
  padding: 5rem 0;
  background: #1a1a2e;
  color: white;
}

.gallery-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.gallery-stats .stat-card {
  text-align: center;
  padding: 2rem;
}

/* Responsive Design for Gallery */
@media screen and (max-width: 768px) {
  .slider-container {
    height: 400px;
  }

  .slider-slide {
    flex-direction: column;
  }

  .slide-image {
    width: 100%;
    height: 60%;
  }

  .slide-content {
    width: 100%;
    height: 40%;
    padding: 1.5rem;
  }

  .slide-content h3 {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 200px;
    text-align: center;
  }

  .lightbox-content {
    flex-direction: column;
    max-width: 95vw;
    max-height: 95vh;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 60vh;
  }

  .lightbox-info {
    width: 100%;
    padding: 1.5rem;
  }

  .lightbox-nav {
    flex-direction: column;
  }
}
