:root {
  --primary-gradient: linear-gradient(135deg, #ff9a00 0%, #ffd700 100%);
  --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --blue-gradient: linear-gradient(135deg, #ffa726 0%, #ffb74d 100%);
  --green-gradient: linear-gradient(135deg, #ffca28 0%, #ffd54f 100%);
  --neon-green-blue: linear-gradient(135deg, #ff8a65 0%, #ffab91 100%);
  --dark-bg: #0a1628;
  --card-bg: rgba(20, 20, 30, 0.75);
  --glass-bg: rgba(20, 20, 30, 0.85);
  --text-primary: #ffffff;
  --text-secondary: #f5f5f5;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.6);
}

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

body {
  font-family: 'Space Grotesk', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image: url('/static/images/background.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  pointer-events: none;
}

.navbar {
  background: var(--glass-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 165, 0, 0.3);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.logo:hover img {
  filter: brightness(1.3);
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.btn-secondary {
  padding: 0.6rem 1.5rem !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary) !important;
}

.btn-signup {
  padding: 0.7rem 1.8rem !important;
  background: linear-gradient(135deg, #ff9a00 0%, #ffd700 100%) !important;
  color: #000000 !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600 !important;
  border: 2px solid #ffb74d;
  box-shadow: 0 4px 15px rgba(255, 154, 0, 0.4);
}

.btn-signup:hover {
  background: linear-gradient(135deg, #ffb74d 0%, #ffe082 100%) !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 154, 0, 0.6);
}

.btn-signup::after {
  display: none !important;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.sort-dropdown {
  background: rgba(50, 30, 10, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.sort-dropdown:hover {
  background: rgba(50, 30, 10, 0.4);
  border-color: rgba(255, 165, 0, 0.4);
}

.sort-dropdown:focus {
  border-color: rgba(255, 165, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.sort-dropdown option {
  background: #0a1628;
  color: var(--text-primary);
}

.hero {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.package-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 3rem;
  padding: 0 2rem;
}

.category-btn {
  background: rgba(255, 154, 0, 0.15);
  border: 2px solid rgba(255, 165, 0, 0.3);
  color: var(--text-primary);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.category-btn:hover {
  background: rgba(255, 165, 0, 0.25);
  border-color: rgba(255, 165, 0, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

.category-btn.active {
  background: var(--neon-green-blue);
  border-color: #ff8c00;
  color: #0a1628;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.service-card.hidden {
  display: none;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 154, 0, 0.12);
  backdrop-filter: none;
  border: 2px solid rgba(255, 165, 0, 0.35);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 24px;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin: 1rem 0;
}

.addons-list {
  list-style: none;
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.addons-list li {
  color: var(--text-secondary);
  padding: 0.4rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.addons-list li::before {
  content: '✨';
  margin-right: 0.5rem;
}

.addons-section {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(255, 165, 0, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 165, 0, 0.2);
}

.addons-section h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.addon-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.addon-item:last-child {
  border-bottom: none;
}

.addon-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.addon-item label:hover {
  color: var(--text-primary);
}

.addon-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 0.8rem;
  cursor: pointer;
  accent-color: #ff8c00;
  transform: scale(1.2);
}

.addon-checkbox:hover {
  accent-color: #ffb347;
}

.cart-btn {
  background: var(--neon-green-blue);
  color: #0a1628;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(255, 140, 0, 0.25);
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.35);
  background: linear-gradient(135deg, #ffcc33, #ffa726);
}

.btn {
  background: var(--neon-green-blue);
  color: #0a1628;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.35);
}

.btn:active {
  transform: translateY(0);
}

.btn-book {
  width: 100%;
  margin-top: 1rem;
  background: var(--neon-green-blue);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25);
}

.btn-book:hover {
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.35);
}

.btn-remove {
  padding: 0.5rem 1rem;
  background: rgba(255, 75, 75, 0.15);
  border: 1px solid rgba(255, 75, 75, 0.4);
  color: #ff6b6b;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-remove:hover {
  background: rgba(255, 75, 75, 0.25);
  border-color: rgba(255, 75, 75, 0.6);
  color: #ff4444;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 75, 75, 0.3);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal.hidden {
  display: none;
}

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

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.98) 0%, rgba(15, 30, 50, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 165, 0, 0.6);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 154, 0, 0.2);
  animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-size: 2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cart-close, .close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close:hover, .close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

#cartList {
  list-style: none;
  margin-bottom: 2rem;
}

.cart-item {
  background: rgba(255, 154, 0, 0.08);
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 165, 0, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: rgba(255, 154, 0, 0.12);
  border-color: rgba(255, 165, 0, 0.4);
  box-shadow: 0 4px 12px rgba(255, 154, 0, 0.15);
}

.cart-item-info h4 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.cart-item-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cart-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--neon-green-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.total {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: right;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 165, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.1);
}

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

.flash-messages {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.alert {
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  font-weight: 500;
  animation: slideInRight 0.4s ease;
  border: 1px solid;
  backdrop-filter: none;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.alert-success {
  background: rgba(67, 233, 123, 0.1);
  border-color: rgba(67, 233, 123, 0.3);
  color: #43e97b;
}

.alert-error {
  background: rgba(245, 87, 108, 0.1);
  border-color: rgba(245, 87, 108, 0.3);
  color: #ff8c00;
}

.admin-container {
  padding: 3rem 2rem;
}

.admin-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.styled-table {
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
}

.styled-table thead {
  background: rgba(255, 140, 0, 0.2);
}

.styled-table th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.styled-table td {
  padding: 1.2rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.styled-table tbody tr {
  transition: all 0.3s ease;
}

.styled-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.small-list {
  list-style: none;
  padding: 0;
}

.small-list li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.small-list li::before {
  content: '•';
  color: #ff9a00;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .services {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
  
  .navbar .container {
    padding: 0 1rem;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .styled-table {
    font-size: 0.85rem;
  }
  
  .styled-table th,
  .styled-table td {
    padding: 0.8rem 0.5rem;
  }
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-footer {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.modal-footer .btn {
  flex: 1;
}

.hero-landing {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-content {
  max-width: 900px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-logo {
  width: 300px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(255, 154, 0, 0.3));
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-brand-name {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-down-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  margin-top: 3rem;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.scroll-down-btn:hover {
  transform: translateY(5px);
  color: #ff9a00;
}

.scroll-text {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

.btn-primary {
  background: linear-gradient(135deg, #ff9a00 0%, #ffd700 100%);
  color: #000000;
  border: 3px solid #ffb74d;
  box-shadow: 0 8px 30px rgba(255, 154, 0, 0.8);
  font-weight: 700;
  padding: 1.2rem 3rem !important;
  font-size: 1.2rem !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffb74d 0%, #ffe082 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 154, 0, 1);
}

.btn-outline {
  background: rgba(255, 154, 0, 0.4);
  border: 3px solid #ffa726;
  color: #ffffff;
  padding: 1.2rem 3rem !important;
  font-size: 1.2rem !important;
  font-weight: 700;
}

.btn-outline:hover {
  background: rgba(255, 154, 0, 0.6);
  border-color: #ffb74d;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 154, 0, 0.6);
}

.about-section {
  padding: 6rem 2rem;
  background: rgba(0, 0, 0, 0.3);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

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

.feature-card {
  background: rgba(255, 154, 0, 0.15);
  backdrop-filter: none;
  border: 2px solid rgba(255, 165, 0, 0.4);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 154, 0, 0.25);
  border-color: rgba(255, 165, 0, 0.6);
  box-shadow: 0 10px 40px rgba(255, 154, 0, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  background: rgba(255, 154, 0, 0.15);
  border-radius: 24px;
  padding: 3rem 2rem;
  border: 2px solid rgba(255, 165, 0, 0.4);
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.footer {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  color: var(--text-secondary);
  margin: 0.5rem 0;
}

.auth-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: rgba(255, 154, 0, 0.15);
  backdrop-filter: none;
  border: 2px solid rgba(255, 165, 0, 0.4);
  border-radius: 24px;
  padding: 3rem;
  max-width: 450px;
  width: 100%;
}

.auth-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(50, 30, 10, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 165, 0, 0.6);
  background: rgba(50, 30, 10, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.auth-footer {
  text-align: center;
  color: var(--text-secondary);
}

.auth-link {
  color: #ffa726;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.auth-link:hover {
  color: #ffb74d;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-logo {
    width: 200px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-brand-name {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .auth-card {
    padding: 2rem;
  }
}

.about-hero, .services-hero {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  padding: 6rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  padding: 4rem 0;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.portfolio-section {
  max-width: 1000px;
  margin: 5rem auto;
  padding: 3rem;
  background: var(--glass-bg);
  backdrop-filter: none;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-section > p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

.portfolio-item {
  background: rgba(50, 30, 10, 0.2);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  background: rgba(50, 30, 10, 0.3);
  box-shadow: var(--shadow-lg);
}

.portfolio-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.portfolio-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.portfolio-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.portfolio-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 2rem;
}

.approach-section {
  max-width: 1100px;
  margin: 5rem auto;
}

.approach-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.approach-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.approach-step {
  background: var(--glass-bg);
  backdrop-filter: none;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.approach-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.approach-step h3 {
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
  color: var(--text-primary);
}

.approach-step ul {
  list-style: none;
  padding: 0;
}

.approach-step li {
  padding: 0.7rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
}

.approach-step li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffa726;
  font-weight: 700;
  font-size: 1.2rem;
}

.why-us-section {
  max-width: 1100px;
  margin: 5rem auto;
  text-align: center;
}

.why-us-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-us-section > p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feature-highlight {
  background: var(--glass-bg);
  backdrop-filter: none;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-5px);
  background: rgba(50, 30, 10, 0.3);
  box-shadow: var(--shadow-lg);
}

.feature-highlight h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.feature-highlight p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-section {
  max-width: 800px;
  margin: 5rem auto;
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: none;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section > p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: #ffa726;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #ffb74d;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
  
  .approach-timeline {
    grid-template-columns: 1fr;
  }
  
  .contact-details {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .portfolio-section,
  .contact-section {
    padding: 2rem;
  }
}

.portfolio-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.portfolio-featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-lg);
}

.portfolio-featured:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 165, 0, 0.3);
}

.portfolio-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

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

.portfolio-caption {
  padding: 1.8rem;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0.7));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.portfolio-caption h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.portfolio-caption p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .portfolio-showcase {
    grid-template-columns: 1fr;
  }
  
  .portfolio-image {
    height: 300px;
  }
  
  /* Navigation */
  .navbar .container {
    padding: 0 1rem;
  }
  
  .nav-links {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-links li a,
  .nav-links li button {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }
  
  .btn-signup {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
  }
  
  /* Hero Section */
  .hero-landing {
    min-height: 85vh;
    padding: 2rem 1rem;
  }
  
  .hero-logo {
    width: 120px !important;
    height: 120px !important;
  }
  
  .hero-brand-name {
    font-size: 1.8rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.95rem !important;
    padding: 0 1rem;
  }
  
  .btn-large {
    padding: 0.9rem 2rem !important;
    font-size: 1rem !important;
  }
  
  .scroll-down-btn {
    margin-top: 2rem;
  }
  
  .scroll-text {
    font-size: 0.85rem;
  }
  
  .scroll-arrow {
    font-size: 1.5rem;
  }
  
  /* Services Section */
  .services {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .service-card {
    padding: 1.5rem !important;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  .price {
    font-size: 1.5rem !important;
  }
  
  .addons-list {
    font-size: 0.85rem;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 2rem !important;
  }
  
  .section-description {
    font-size: 0.95rem !important;
    padding: 0 1rem;
  }
  
  /* Modals */
  .modal-content {
    width: 95% !important;
    max-width: 95% !important;
    margin: 1rem;
    padding: 1.5rem !important;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  /* Forms */
  .form-input,
  .form-group textarea,
  .form-group select {
    font-size: 1rem;
  }
  
  /* Auth Pages */
  .auth-container {
    padding: 2rem 1rem !important;
  }
  
  .auth-card {
    padding: 2rem 1.5rem !important;
  }
  
  .auth-title {
    font-size: 1.8rem !important;
  }
  
  .auth-subtitle {
    font-size: 0.95rem !important;
  }
  
  /* Tables */
  .styled-table {
    font-size: 0.85rem;
  }
  
  .styled-table th,
  .styled-table td {
    padding: 0.75rem 0.5rem !important;
  }
  
  /* Feature Cards */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem !important;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 2rem 1rem !important;
  }
  
  .cta-section h3 {
    font-size: 1.5rem !important;
  }
  
  .cta-section p {
    font-size: 0.95rem !important;
  }
  
  /* Container */
  .container {
    padding: 0 1rem !important;
  }
  
  /* Alert Messages */
  .alert {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }
  
  /* Logo */
  .logo img {
    height: 35px;
  }
}

/* Extra small devices (phones in portrait mode) */
@media (max-width: 480px) {
  .hero-brand-name {
    font-size: 1.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.85rem !important;
  }
  
  .btn-large {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  
  .section-title {
    font-size: 1.6rem !important;
  }
  
  .nav-links {
    gap: 0.3rem;
  }
  
  .nav-links li a,
  .nav-links li button {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
  
  .modal-content {
    width: 98% !important;
    padding: 1rem !important;
  }
  
  .service-card {
    padding: 1.2rem !important;
  }
  
  .auth-card {
    padding: 1.5rem 1rem !important;
  }
}
