/* Loader Styles */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
  color: #f1f1f1;
}

.sound-wave {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 80px;
  margin-bottom: 30px;
  gap: 8px;
}

.wave {
  width: 10px;
  background: linear-gradient(to top, #76b0df, #125ecf, #051ada);
  border-radius: 4px;
  animation: wave-animation 1.5s ease-in-out infinite;
}

.wave:nth-child(1) {
  animation-delay: 0s;
}

.wave:nth-child(2) {
  animation-delay: 0.2s;
}

.wave:nth-child(3) {
  animation-delay: 0.4s;
}

.wave:nth-child(4) {
  animation-delay: 0.6s;
}

.wave:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes wave-animation {
  0%,
  100% {
    height: 20px;
  }
  50% {
    height: 60px;
  }
}

.loader-text h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.dots {
  display: inline-block;
}

.dots span {
  font-size: 24px;
  animation: dots-animation 1.5s infinite;
}

.dots span:nth-child(1) {
  animation-delay: 0s;
}

.dots span:nth-child(2) {
  animation-delay: 0.5s;
}

.dots span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes dots-animation {
  0%,
  66% {
    opacity: 0.3;
  }
  33% {
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-brand .mic-icon {
  color: #e74c3c;
  font-size: 1.8rem;
}

.nav-brand h2 {
  color: #e74c3c;
  font-size: 1.5rem;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #e74c3c;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 0;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 0 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  gap: 2rem;
}

.slide.active {
  display: flex;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}

.prev-btn,
.next-btn {
  background: rgba(231, 76, 60, 0.8);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(231, 76, 60, 1);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #e74c3c;
  transform: scale(1.2);
}

/* Button Styles */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #2c3e50;
  border: 2px solid #e74c3c;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.1);
}

.btn-secondary:hover {
  background: #e74c3c;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

/* Button icons */
.btn-primary i,
.btn-secondary i {
  font-size: 18px;
}

/* Fallback hero without slider */
.hero:not(.hero-slider) {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 100px 2rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  gap: 2rem;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.about-subtitle {
  font-size: 1.3rem;
  color: #e74c3c;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.4;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

.stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #c0392b);
  transition: left 0.3s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 2rem;
  color: white;
  margin: 0;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-size: 1.5rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-price {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  border-left: 4px solid #e74c3c;
}

.service-price span {
  font-weight: bold;
  color: #2c3e50;
  font-size: 1.2rem;
}

.service-footer {
  margin-top: auto;
  padding-top: 1rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.service-btn:hover::before {
  left: 100%;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.service-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(3px);
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0;
  background: #f8f9fa;
}

.portfolio h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid #e74c3c;
  background: transparent;
  color: #e74c3c;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(231, 76, 60, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn.active,
.filter-btn:hover {
  background: #e74c3c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.filter-btn:active {
  transform: translateY(0);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.portfolio-info p {
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.media-player {
  margin-top: auto;
  padding-top: 1rem;
}

.portfolio-audio,
.portfolio-video {
  width: 100%;
  border-radius: 10px;
  background: #f8f9fa;
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-video {
  max-height: 200px;
}

.portfolio-audio {
  height: 40px;
}

/* Legacy support for old portfolio structure */
.portfolio-content audio,
.portfolio-content video {
  width: 100%;
  margin-top: 1rem;
  border-radius: 10px;
  background: #f8f9fa;
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-content video {
  max-height: 200px;
}

.portfolio-content audio {
  height: 40px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #e74c3c;
  width: 30px;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.contact-form button:hover::before {
  left: 100%;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.contact-form button:active {
  transform: translateY(0);
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: #e74c3c;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #e74c3c;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #bbb;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #e74c3c;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    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;
  }

  .slide {
    flex-direction: column;
    text-align: center;
    padding: 120px 2rem 60px;
  }

  .hero:not(.hero-slider) {
    flex-direction: column;
    text-align: center;
    padding: 120px 2rem 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .slider-controls {
    display: none; /* Hide on mobile for better UX */
  }

  .about-content {
    flex-direction: column;
  }

  .stats {
    justify-content: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
    min-width: 200px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .contact-form button {
    padding: 12px 18px;
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .service-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .portfolio-filters {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .portfolio-page .portfolio-info {
    padding: 1.5rem;
  }

  .contact-page .contact-info,
  .contact-page .contact-form {
    padding: 1.5rem;
  }
}

/* Portfolio Page Styles */
.portfolio-page {
  padding: 80px 0;
  background: #f8f9fa;
}

.portfolio-page .portfolio-grid {
  margin-top: 2rem;
}

.portfolio-page .portfolio-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-page .portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-page .portfolio-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.portfolio-page .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-page .portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-page .portfolio-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-page .portfolio-info {
  padding: 2rem;
}

.portfolio-page .portfolio-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.portfolio-page .portfolio-info p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-page .media-player {
  margin-top: 1rem;
}

.portfolio-page .portfolio-audio,
.portfolio-page .portfolio-video {
  width: 100%;
  border-radius: 10px;
  background: #f8f9fa;
  outline: none;
}

.portfolio-page .portfolio-video {
  max-height: 250px;
}

/* Contact Page Styles */
.contact-page {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-page .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-page .contact-info {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.contact-page .contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
}

.contact-page .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.contact-page .contact-item:hover {
  transform: translateX(10px);
}

.contact-page .contact-item i {
  font-size: 1.8rem;
  color: #e74c3c;
  min-width: 30px;
  margin-top: 0.2rem;
}

.contact-page .contact-item h4 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-size: 1.2rem;
}

.contact-page .contact-item p {
  margin-bottom: 0.3rem;
  color: #333;
  font-weight: 500;
}

.contact-page .contact-item small {
  color: #666;
  font-style: italic;
}

.contact-page .contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
}

.contact-page .form-group {
  margin-bottom: 2rem;
}

.contact-page .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #f8f9fa;
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
  outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
  background: white;
}

.contact-page .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-page .btn-primary {
  width: 100%;
  margin-bottom: 1rem;
}

.contact-page .form-note {
  color: #666;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
}

/* Responsive Design for Portfolio and Contact Pages */
@media (max-width: 768px) {
  .portfolio-page .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-page .contact-info,
  .contact-page .contact-form {
    padding: 2rem;
  }

  .contact-page .contact-item {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-page .contact-item:hover {
    transform: none;
  }

  .portfolio-page .portfolio-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .portfolio-page .portfolio-info {
    padding: 1.5rem;
  }

  .contact-page .contact-info,
  .contact-page .contact-form {
    padding: 1.5rem;
  }
}

/* About Page Styles */
.page-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.about-detail {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-detail-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-detail-image {
  position: relative;
}

.about-detail-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-detail-image:hover img {
  transform: translateY(-10px);
}

.about-detail-text h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.about-detail-text h3 {
  font-size: 1.3rem;
  color: #e74c3c;
  margin-bottom: 2rem;
  font-weight: 500;
}

.about-detail-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.about-subtitle {
  font-size: 1.3rem;
  color: #e74c3c;
  margin-bottom: 2rem;
  font-weight: 500;
}

.skills-section {
  padding: 80px 0;
  background: white;
}

.skills-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.skill-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(231, 76, 60, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.skill-card:hover::before {
  left: 100%;
}

.skill-card:hover {
  transform: translateY(-10px);
  border-color: #e74c3c;
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.15);
}

.skill-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
  transform: scale(1.1) rotate(5deg);
}

.skill-icon i {
  font-size: 2rem;
  color: white;
}

.skill-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.skill-card p {
  color: #666;
  line-height: 1.6;
}

/* Services Detail Page Styles */
.services-detail {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-detail-item {
  margin-bottom: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}

.service-detail-content.reverse {
  grid-template-columns: 1fr auto;
}

.service-detail-content.reverse .service-detail-icon {
  order: 2;
}

.service-detail-content.reverse .service-detail-text {
  order: 1;
  text-align: right;
}

.service-detail-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
  transition: transform 0.3s ease;
}

.service-detail-item:hover .service-detail-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-detail-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-detail-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-detail-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #555;
}

.service-detail-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-detail-text li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  color: #666;
}

.service-detail-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.2rem;
}

.service-price {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.service-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-detail-content.reverse .service-cta {
  justify-content: flex-end;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
  .service-detail-content,
  .service-detail-content.reverse {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .service-detail-content.reverse .service-detail-icon,
  .service-detail-content.reverse .service-detail-text {
    order: unset;
  }

  .service-detail-content.reverse .service-detail-text {
    text-align: center;
  }

  .service-detail-content.reverse .service-cta {
    justify-content: center;
  }

  .service-detail-item {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .service-detail-text h2 {
    font-size: 1.5rem;
  }

  .service-cta {
    flex-direction: column;
    align-items: center;
  }

  .service-cta .btn-primary,
  .service-cta .btn-secondary {
    width: 100%;
    max-width: 250px;
  }
}
/* About Page Mobile Responsive */
@media (max-width: 768px) {
  .about-detail-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .about-detail-image {
    order: 1;
  }

  .about-detail-text {
    order: 2;
  }

  .about-detail-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .about-detail-text h3 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }
}


