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

body {
  font-family: "Inter", sans-serif;
  color: #001f3f;
  background-color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

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

.btn {
  display: inline-block;
  font-weight: bold;
  padding: 12px 32px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #ff6600;
  color: white;
}

.btn-primary:hover {
  background-color: #e65c00;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: #001f3f;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}

/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #ff6600;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav ul li {
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li:hover {
  color: #ff6600;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li:hover {
  color: #ff6600;
}

.nav-menu a {
  color: inherit;
  text-decoration: none;
  padding: 8px 0;
  display: block;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #001f3f;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 1px solid #f3f4f6;
  color: #001f3f;
  text-decoration: none;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: #ff6600;
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 10;
  padding: 0 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-title:hover {
  transform: scale(1.05);
}

.hero-subtitle {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-subtitle:hover {
  transform: scale(1.02);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Portfolio Section */
.portfolio {
  background-color: #f9fafb;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.portfolio-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-img {
  height: 200px;
  background-color: #e5e7eb;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.portfolio-desc {
  color: #6b7280;
  margin-bottom: 16px;
}

.portfolio-link {
  color: #ff6600;
  font-weight: 500;
}

.portfolio-link:hover {
  text-decoration: underline;
}

.portfolio-btn {
  text-align: center;
}

.btn-dark {
  background-color: #001f3f;
  color: white;
}

.btn-dark:hover {
  background-color: #001a35;
}

/* Process Section */
.process {
  background-color: white;
  padding: 120px 0;
}

.process-container {
  display: flex;
  gap: 80px;
  align-items: center;
}

.process-image {
  flex: 0 0 400px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 4rem 0;
}

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

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

.process-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.1),
    rgba(0, 31, 63, 0.1)
  );
  z-index: 1;
}

.process-content {
  flex: 1;
}

.timeline {
  position: relative;
  max-width: 100%;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ff6600;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 40px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ff6600;
}

.timeline-content {
  display: flex;
  flex-direction: column;
}

.timeline-title {
  font-size: 20px;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 8px;
}

.timeline-desc {
  color: #6b7280;
}

/* Services Section */
.services {
  background-color: #f9fafb;
  padding: 120px 0;
  overflow: hidden;
}

.services-carousel {
  position: relative;
  height: 300px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  top: 28%;
}

.service-card {
  position: absolute;
  width: 190px;
  height: 250px;
  background-color: white;
  padding: 20px 16px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  transform-style: preserve-3d;
  left: 50%;
  top: 50%;
  margin-left: -190px;
  margin-top: -210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card.active {
  transform: translateZ(80px) scale(1.05);
  z-index: 3;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-card.prev {
  transform: translateX(-280px) translateZ(-40px) rotateY(20deg) scale(0.85);
  z-index: 1;
  opacity: 0.6;
}

.service-card.next {
  transform: translateX(280px) translateZ(-40px) rotateY(-20deg) scale(0.85);
  z-index: 1;
  opacity: 0.6;
}

.service-card.far-prev {
  transform: translateX(-450px) translateZ(-80px) rotateY(35deg) scale(0.7);
  z-index: 0;
  opacity: 0.3;
}

.service-card.far-next {
  transform: translateX(450px) translateZ(-80px) rotateY(-35deg) scale(0.7);
  z-index: 0;
  opacity: 0.3;
}

.service-card.hidden {
  opacity: 0;
  transform: scale(0.5);
}

.service-card:hover {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
  border-color: #ff6600;
}

.service-card:hover.active {
  transform: translateZ(100px) scale(1.08);
}

.service-icon {
  color: #ff6600;
  font-size: 32px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #ff6600, #e65c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card:hover .service-icon {
  transform: scale(1.15);
}

.service-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #001f3f;
}

.service-desc {
  color: #6b7280;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.1;
  flex-grow: 1;
}

.service-link {
  color: #ff6600;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 8px 18px;
  font-size: 12px;
  border: 2px solid #ff6600;
  border-radius: 25px;
  display: inline-block;
  margin-top: auto;
}

.service-link:hover {
  color: #e65c00;
  background-color: #ff6600;
  color: white;
  transform: translateY(-2px);
}

.services-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}

.services-nav-btn {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.services-nav-btn:hover {
  background-color: #e65c00;
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.services-nav-btn:disabled {
  background-color: #d1d5db;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.services-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.services-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-indicator.active {
  background-color: #ff6600;
  transform: scale(1.2);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  border-radius: 12px;
  padding: 0;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  animation: slideIn 0.3s ease;
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #001f3f;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: #f3f4f6;
  color: #ff6600;
}

.modal-body {
  padding: 0;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pricing Section */
.pricing {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 102, 0, 0.1) 0%,
    transparent 70%
  );
  z-index: 1;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

.pricing .section-title {
  color: white;
  font-size: 42px;
  margin-bottom: 16px;
}

.pricing-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-carousel-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.pricing-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 20px;
}

.pricing-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
  max-width: 350px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card-popular {
  transform: scale(1.05);
  z-index: 2;
  border: 2px solid #ff6600;
}

.pricing-card-popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.pricing-card-image img,
.pricing-card-image iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: none;
}

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

.pricing-card-content {
  padding: 30px 25px;
  color: #333;
  text-align: center;
}

.pricing-card-title {
  font-size: 24px;
  font-weight: bold;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.pricing-card-features {
  text-align: left;
  margin-bottom: 25px;
  min-height: 90px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
}

.pricing-feature i {
  color: #ff6600;
  font-size: 12px;
  margin-right: 10px;
  flex-shrink: 0;
  width: 12px;
}

.pricing-feature-more {
  font-size: 13px;
  color: #999;
  font-style: italic;
  margin-top: 5px;
  text-align: center;
}

.pricing-card-price {
  margin-bottom: 25px;
  text-align: center;
}

.price-main {
  font-size: 32px;
  font-weight: bold;
  color: #ff6600;
  display: block;
}

.price-sub {
  font-size: 14px;
  color: #666;
  display: block;
  margin-top: 4px;
}

.pricing-card-extra {
  font-size: 13px;
  color: #888;
  margin-bottom: 25px;
}

.pricing-card-btn {
  background: linear-gradient(135deg, #ff6600, #e65c00);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 180px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.pricing-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

.pricing-card-popular .pricing-card-btn {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff6600;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 3;
}

.pricing-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pricing-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.pricing-nav-btn:hover:not(:disabled) {
  background: rgba(255, 102, 0, 0.8);
  border-color: #ff6600;
  transform: scale(1.1);
}

.pricing-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pricing-indicators {
  display: flex;
  gap: 8px;
}

.pricing-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-indicator.active {
  background: #ff6600;
  transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .pricing-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .pricing-card {
    flex: 0 0 calc(100% - 40px);
    min-width: 280px;
  }

  .pricing-carousel-track {
    gap: 20px;
  }

  .pricing .section-title {
    font-size: 32px;
  }

  .pricing-subtitle {
    font-size: 16px;
  }
}

/* About Section */
.about {
  background-color: #f9fafb;
}

.about-container {
  display: flex;
  flex-direction: column;
}

.about-content {
  margin-bottom: 48px;
}

.about-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
}

.about-desc {
  color: #6b7280;
  margin-bottom: 24px;
}

.about-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-item {
  background-color: rgba(255, 102, 0, 0.1);
  padding: 16px;
  border-radius: 8px;
}

.stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-item {
  height: 256px;
  background-color: #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Teaser */
.contact-teaser {
  background-color: #ff6600;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.teaser-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
}

.teaser-desc {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.teaser-form {
  max-width: 500px;
  margin: 0 auto;
}

.teaser-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 9999px;
  border: none;
  font-size: 16px;
  margin-bottom: 16px;
}

.teaser-btn {
  background-color: #001f3f;
  color: white;
  border: none;
  cursor: pointer;
}

.teaser-btn:hover {
  background-color: #001a35;
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #374151;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  flex: 1;
  background-color: #f9fafb;
  padding: 32px;
  border-radius: 8px;
}

.info-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  margin-bottom: 24px;
}

.info-icon {
  color: #ff6600;
  font-size: 20px;
  margin-right: 16px;
  margin-top: 4px;
}

.info-label {
  font-weight: 500;
  margin-bottom: 4px;
}

.info-text {
  color: #6b7280;
}

.social-links {
  margin-top: 32px;
}

.social-title {
  font-weight: 500;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  color: #6b7280;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ff6600;
}

/* Map */
.map {
  height: 384px;
  width: 100%;
  background-color: #e5e7eb;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: #001f3f;
  color: white;
  padding: 80px 0 32px;
}

.footer-container {
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
}

.footer-brand {
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-logo span {
  color: #ff6600;
}

.footer-desc {
  color: #d1d5db;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.footer-col-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

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

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #ff6600;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 12px;
}

.footer-contact-icon {
  color: #ff6600;
  margin-right: 8px;
  margin-top: 2px;
}

.footer-contact-text {
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-copyright {
  color: #9ca3af;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #9ca3af;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff6600;
}

/* Admin Button */
.admin-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff6600;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.admin-btn:hover {
  background-color: #e65c00;
  transform: translateY(-2px);
}

.admin-btn i {
  margin-right: 8px;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .process-container {
    flex-direction: row;
  }

  .hero-title {
    font-size: 60px;
  }

  .timeline-item {
    padding-left: 0;
  }

  .timeline-item::before {
    left: calc(50% - 10px);
  }

  .timeline-content {
    flex-direction: row;
  }

  .timeline-content > div {
    width: 50%;
    padding-right: 32px;
    text-align: right;
  }

  .timeline-content > div:last-child {
    padding-right: 0;
    padding-left: 32px;
    text-align: left;
  }

  .about-container {
    flex-direction: row;
  }

  .about-content {
    flex: 1;
    margin-bottom: 0;
    padding-right: 48px;
  }

  .about-gallery {
    flex: 1;
  }

  .contact-container {
    flex-direction: column;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-brand {
    margin-bottom: 0;
    flex: 1;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    flex: 2;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copyright {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav-menu {
    display: flex;
  }

  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu.show {
    display: block;
  }
}

@media (max-width: 640px) {
  .pricing-carousel,
  .services-carousel {
    height: 450px;
  }

  .price-card,
  .service-card {
    width: 300px;
  }

  .price-card {
    height: 420px;
  }

  .service-card {
    height: 350px;
    padding: 24px 20px;
  }

  .process-container {
    flex-direction: column;
    gap: 40px;
  }

  .process-image {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .teaser-title {
    font-size: 28px;
  }

  .teaser-desc {
    font-size: 18px;
  }

  .price-card {
    min-width: 280px;
    padding: 32px 24px;
  }

  .price-amount {
    font-size: 36px;
  }

  .price-title {
    font-size: 20px;
  }
}
