:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #fef3c7 0%, #dbeafe 50%, #e0e7ff 100%);
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-purple: #8b5cf6;
  --accent-amber: #f59e0b;
  --accent-pink: #ec4899;
  --accent-rose: #f43f5e;
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
  --gradient-warm: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow-blue: 0 8px 32px rgba(59, 130, 246, 0.2);
  --shadow-glow-purple: 0 8px 32px rgba(139, 92, 246, 0.2);
  --shadow-glow-amber: 0 8px 32px rgba(245, 158, 11, 0.2);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Animated background gradient */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  z-index: -1;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

/* Header */
.site-header {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 80px 0 60px;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

/* Decorative shapes in header */
.site-header::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.header-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  flex-shrink: 0;
  animation: fadeInUp 0.8s ease;
}

.header-text {
  flex: 1;
}

.site-header h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease;
}

.tagline {
  color: var(--text-secondary);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact cards */
.contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.contact-block {
  width: 100%;
  background: var(--surface-elevated);
  border: 2px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-block:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-blue);
}

.contact-block:hover::before {
  transform: scaleX(1);
}

.contact-block strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.contact-block a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: var(--accent-blue);
}

.phone-img img {
  height: 48px;
  vertical-align: middle;
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

.intro {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, transparent 100%);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Info cards grid */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.info-cards article {
  background: var(--surface-elevated);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.info-cards article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.info-cards article:nth-child(2)::before {
  background: var(--gradient-secondary);
}

.info-cards article:nth-child(3)::before {
  background: var(--gradient-accent);
}

.info-cards article:nth-child(4)::before {
  background: var(--gradient-warm);
}

.info-cards article:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-glow-blue);
}

.info-cards article:nth-child(2):hover {
  box-shadow: var(--shadow-glow-blue);
}

.info-cards article:nth-child(3):hover {
  box-shadow: var(--shadow-glow-purple);
}

.info-cards article:nth-child(4):hover {
  box-shadow: var(--shadow-glow-amber);
}

.info-cards article:hover::before {
  transform: scaleX(1);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 48px;
  font-size: 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta p {
  margin-bottom: 0;
}

.cta a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.cta a:hover {
  border-bottom-color: var(--accent-blue);
  color: var(--accent-purple);
}

.cta-secondary {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  border: 2px solid rgba(139, 92, 246, 0.15);
  margin-top: 24px;
}

/* Service area list */
ul {
  list-style: none;
  margin: 24px 0;
}

ul li {
  color: var(--text-secondary);
  padding: 16px 0;
  padding-left: 36px;
  position: relative;
  font-weight: 500;
}

ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-size: 20px;
}

/* Currently Available Birds Table */
.available-birds-table {
  overflow-x: auto;
  margin: 40px 0;
}

.available-birds-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-elevated);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.1);
}

.available-birds-table thead {
  background: var(--gradient-primary);
  color: white;
}

.available-birds-table th {
  padding: 20px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.available-birds-table td {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
  color: var(--text-secondary);
  font-weight: 500;
}

.available-birds-table tbody tr:last-child td {
  border-bottom: none;
}

.available-birds-table tbody tr {
  transition: all 0.3s ease;
}

.available-birds-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.table-bird-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(59, 130, 246, 0.2);
  box-shadow: var(--shadow-sm);
}

.table-bird-img:hover {
  transform: scale(1.15);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow-blue);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--surface-elevated);
  border: 2px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow-glow-blue);
}

.card:hover::after {
  opacity: 1;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.card-info {
  padding: 20px;
  background: var(--surface-elevated);
  position: relative;
  z-index: 1;
}

.card-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.card-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-details .label {
  font-weight: 600;
  color: var(--text-secondary);
}

.card-details .value {
  color: var(--text-primary);
  font-weight: 500;
}

.card-details .value.available {
  color: #10b981;
  font-weight: 700;
}

.card-details .value.sold {
  color: #ef4444;
  font-weight: 700;
}

.card-details .value.reserved {
  color: #f59e0b;
  font-weight: 700;
}

/* Button */
button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow-blue);
  text-transform: none;
  letter-spacing: 0.01em;
  margin: 32px 0;
  font-family: inherit;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

button:active {
  transform: translateY(-1px);
}

.button-container {
  text-align: center;
  margin-top: 32px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  display: grid;
  place-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.lightbox.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox .close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  line-height: 1;
  font-weight: 300;
}

.lightbox .close:hover {
  background: var(--accent-blue);
  color: white;
  border-color: var(--accent-blue);
  transform: rotate(90deg) scale(1.1);
}

#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(59, 130, 246, 0.2);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.8) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  margin-top: 80px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    padding: 60px 0 40px;
  }

  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .header-logo {
    width: 100px;
    height: 100px;
  }

  section {
    padding: 60px 0;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .contact-block {
    min-width: 100%;
  }

  .available-birds-table {
    margin: 32px 0;
  }

  .available-birds-table table {
    font-size: 14px;
  }

  .table-bird-img {
    width: 60px;
    height: 60px;
  }

  .available-birds-table th,
  .available-birds-table td {
    padding: 16px 12px;
  }

  .available-birds-table th {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .available-birds-table table {
    font-size: 13px;
  }

  .table-bird-img {
    width: 50px;
    height: 50px;
  }

  .available-birds-table th,
  .available-birds-table td {
    padding: 12px 8px;
  }

  .available-birds-table th {
    font-size: 12px;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }