html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  background: url("images/background.png") no-repeat center center fixed;
  background-size: cover;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  padding-top: 90px;
}

.hero-section {
  padding: 80px 0;
  text-align: center;
}

.product-card img {
  height: 300px;
  object-fit: cover;
}

.logo img {
  height: 160px;
}

#product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px;
}

.card.product-card.shadow-sm {
  width: calc(25% - 50px);
  box-sizing: border-box;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 80px;
  padding: 15px;
  margin: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: transparent;
}

.custom-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 32px;
  background: rgba(8, 8, 15, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  min-width: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.nav-links li {
  margin: 0;
}

.nav-link {
  color: #f8f9fb;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  border-radius: 999px;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.cart-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffd700;
  color: #111;
  border: 2px solid rgba(0, 0, 0, 0.18);
  padding: 14px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.cart-button:hover {
  background: #ffe74a;
  transform: translateY(-1px);
}

.cart-icon {
  font-size: 1.2rem;
}

#cartCount {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  background: #11111159;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .custom-nav {
    padding: 16px 20px;
    gap: 16px;
  }

  .nav-left {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .cart-button {
    padding: 12px 18px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .cart-button {
    width: 100%;
    justify-content: center;
  }
}

.hero-section {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 40px 40px;
  gap: 10px;
}

.hero-logo img {
  display: block;
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
}

.hero-right {
  max-width: 700px;
}

.hero-right p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 40rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-btn button {
  padding: 16px 38px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #ffd700;
  color: #111;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.hero-btn button:hover {
  background: #f7cc00;
  transform: translateY(-2px);
}

/* Carousel Styles */
.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 20px;
  position: relative;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.product-item {
  height: 350px;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product-image-wrapper:hover {
  transform: scale(1.02);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .product-image {
  opacity: 0.3;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.34);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.product-image-wrapper:hover .product-overlay {
  opacity: 1;
}

.product-name {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.product-price {
  color: #ffd700;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.add-to-cart-btn {
  background-color: white;
  color: #333;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: #ffd700;
  transform: scale(1.05);
}

.carousel-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffd700;
  color: #ffd700;
}

.carousel-button:active {
  transform: scale(0.95);
}

#shop h2 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Our Collection Section */
#collection {
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.4);
  margin: 40px 0;
  border-radius: 15px;
}

#collection h2 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: #f3eeee;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

/* Filter Menu */
.filter-menu {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 20px;
}

.filter-btn {
  padding: 12px 30px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #ffd700;
  border-color: #ffd700;
  color: #333;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 30px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card-collection {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card-collection:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-image-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  font-weight: bold;
  font-size: 14px;
  overflow: hidden;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.product-category-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 215, 0, 0.9);
  color: #333;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.btn-view {
  width: 100%;
  padding: 10px 15px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background: #ffd700;
  color: #333;
  transform: scale(1.02);
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  border-radius: 15px;
  padding: 0;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  font-size: 28px;
  font-weight: 800;
  color: #111;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.modal-close:hover {
  background: #ffd700;
  color: #111;
  transform: scale(1.06);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.modal-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-product-image {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.modal-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-info-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.modal-product-price {
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
}

.modal-stock-info {
  font-size: 14px;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.modal-option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-option-group label {
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.size-options,
.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn,
.color-btn {
  padding: 10px 15px;
  border: 2px solid #ddd;
  background: white;
  color: #333;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
}

.size-btn:hover,
.color-btn:hover {
  border-color: #ffd700;
  background: #fff9e6;
}

.size-btn.active,
.color-btn.active {
  background: #ffd700;
  border-color: #ffd700;
  color: #333;
  font-weight: 700;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: 2px solid #ddd;
  background: white;
  color: #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.quantity-selector button:hover {
  border-color: #ffd700;
  background: #fff9e6;
}

#quantityInput {
  width: 60px;
  padding: 8px;
  border: 2px solid #ddd;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

#quantityInput:focus {
  outline: none;
  border-color: #ffd700;
}

.btn-buy {
  width: 100%;
  padding: 15px 20px;
  background: #333;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-buy:hover {
  background: #ffd700;
  color: #333;
  transform: scale(1.02);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .modal-product-image {
    height: 250px;
  }

  .modal-info-section h2 {
    font-size: 22px;
  }

  .modal-product-price {
    font-size: 24px;
  }
}

/* Page Navigation */
.page-section {
  display: block;
  animation: fadeIn 0.3s ease;
}

.page-section.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Checkout Page (overlay modal) */
#checkout-page {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  padding: 20px;
  /* reduced padding so modal appears smaller */
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#checkout-page:not(.hidden) {
  display: flex;
}

.checkout-container {
  position: relative;
  max-width: 900px;
  /* make modal narrower */
  width: 90%;
  max-height: 80vh;
  /* limit height so it doesn't cover whole page */
  margin: 0 auto;
  overflow: auto;
  border-radius: 12px;
  padding-top: 40px;
}

.checkout-container h1 {
  text-align: center;
  color: white;
  font-size: 2.2rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  /* slightly smaller gap */
}

.checkout-left,
.checkout-right {
  background: white;
  padding: 20px;
  /* reduced padding to make sections more compact */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.checkout-left h2,
.checkout-right h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.checkout-left h3,
.checkout-right h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 25px;
  margin-bottom: 15px;
}

.address-map-container {
  margin: 15px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #f9f9f9;
}

.address-map-container.hidden {
  display: none;
}

.cart-items-list {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.empty-cart {
  text-align: center;
  color: #999;
  padding: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #f9f9f9;
}

.item-details {
  flex: 1;
}

.item-details h4 {
  margin: 0 0 8px 0;
  color: #333;
  font-size: 15px;
}

.item-details p {
  margin: 4px 0;
  color: #666;
  font-size: 13px;
}

.item-price {
  text-align: right;
  min-width: 100px;
}

.item-price p {
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.remove-btn {
  padding: 6px 12px;
  background: #ff4444;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-btn:hover {
  background: #cc0000;
}

.cart-summary {
  border-top: 2px solid #eee;
  padding-top: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
}

/* Forms */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.delivery-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.delivery-option:hover {
  border-color: #ffd700;
  background: #fff9e6;
}

.delivery-option input[type="radio"] {
  width: auto;
  margin-right: 12px;
  cursor: pointer;
}

.delivery-option span {
  flex: 1;
  color: #333;
  font-size: 14px;
}

.checkout-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #333;
  color: white;
  flex: 1;
}

.btn-primary:hover {
  background: #ffd700;
  color: #333;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #333;
  flex: 1;
}

.btn-secondary:hover {
  background: #333;
  color: white;
}

/* Payment Page */
#payment-page {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  padding: 40px 20px;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

#payment-page:not(.hidden) {
  display: flex;
}

.payment-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}

.payment-container h1 {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.payment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.payment-left,
.payment-right {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.payment-left h2,
.payment-right h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.payment-left h3,
.payment-right h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.order-summary {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #333;
}

.summary-item:last-child {
  border-bottom: none;
}

.payment-summary {
  border-top: 2px solid #eee;
  padding-top: 15px;
  margin-top: 20px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.payment-method-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.payment-method-option:hover {
  border-color: #ffd700;
  background: #fff9e6;
}

.payment-method-option input[type="radio"] {
  width: auto;
  margin-right: 12px;
  cursor: pointer;
}

.payment-method-option span {
  flex: 1;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.payment-form {
  display: block;
  margin-bottom: 20px;
}

.payment-form.hidden {
  display: none;
}

.bank-info {
  background: #f0f8ff;
  border-left: 4px solid #ffd700;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.bank-info p {
  margin: 8px 0;
  color: #333;
  font-size: 14px;
}

.bank-info p strong {
  font-weight: 700;
}

.bank-info .note {
  color: #666;
  font-style: italic;
  margin-top: 12px;
}

.payment-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .checkout-content,
  .payment-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-buttons,
  .payment-buttons {
    flex-direction: column;
  }

  .checkout-container h1,
  .payment-container h1 {
    font-size: 1.8rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.014) 0%,
    rgb(51, 51, 51) 100%
  );
  color: #fff;
  padding: 60px 40px 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    padding: 40px 20px 15px;
    margin-top: 40px;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.4);
  margin: 40px 0;
  border-radius: 15px;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 50px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-column {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-info-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 5px 0;
  line-height: 1.6;
}

.contact-value a {
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.contact-value a:hover {
  color: white;
  text-decoration: underline;
}

.contact-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 30px;
}

.service-title {
  margin-top: 20px;
  margin-bottom: 15px;
}

.service-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-links li {
  margin-bottom: 12px;
}

.service-links li:last-child {
  margin-bottom: 0;
}

.service-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-links a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-column {
    padding: 20px;
  }

  .contact-subtitle {
    font-size: 1.4rem;
  }

  .contact-value,
  .contact-description,
  .service-links a {
    font-size: 1rem;
  }
}
