:root {
  --bg-color: #0d1312;
  --surface-color: #16201e;
  --surface-hover: #1f2d2b;
  --primary-color: #d8a04c;
  --primary-hover: #e8b15d;
  --text-main: #f2f4f3;
  --text-dim: #a7b8b2;
  --border-color: rgba(255, 255, 255, 0.08);
  --header-bg: rgba(13, 19, 18, 0.85);

  --font-family: 'Inter', sans-serif;
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

p {
  color: var(--text-dim);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(216, 160, 76, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background-color: var(--header-bg);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  font-weight: 700;
  font-size: 1.1rem;
}

.phone-link:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  box-shadow: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(to right, rgba(13, 19, 18, 0.9) 0%, rgba(13, 19, 18, 0.4) 100%), url('../images/hero-bg.png') center/cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-color), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.hero p.subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature i {
  color: var(--primary-color);
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Sections Common */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid System */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Features (Why choose us) */
.feature-card {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 160, 76, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(216, 160, 76, 0.1);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

/* Fish Cards */
.fish-card {
  background-color: var(--surface-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.fish-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.fish-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}

.fish-card:hover .fish-img {
  transform: scale(1.05);
}

.fish-content {
  padding: 25px;
}

.fish-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.fish-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.fish-tag {
  background-color: rgba(216, 160, 76, 0.1);
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Pricing */
.price-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.price-box {
  background: linear-gradient(145deg, var(--surface-color), #1a2624);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(216, 160, 76, 0.3);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(216, 160, 76, 0.2) 0%, transparent 70%);
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1;
}

.price-amount span {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 400;
}

.price-list {
  margin: 30px 0;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.price-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.price-list i {
  color: var(--primary-color);
}

.extra-prices {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.extra-price-card {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.extra-price-card h4 {
  color: var(--text-main);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table td {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
  color: var(--text-dim);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:last-child {
  text-align: right;
  color: var(--text-main);
  font-weight: 600;
}

/* FAQ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-header:hover, .faq-item.active .faq-header {
  color: var(--primary-color);
  background-color: rgba(216, 160, 76, 0.05);
}

.faq-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-content p {
  padding-bottom: 20px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Contacts & Map */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(216, 160, 76, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  margin-bottom: 5px;
}

.contact-form {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

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

.form-control {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.4);
}

.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 25px;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: #080c0b;
  padding: 40px 0 20px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-seo {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: left;
  font-size: 0.85rem;
}

.footer-seo p {
  margin-bottom: 10px;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-layout, .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .nav-links, .header-actions {
    display: none !important;
  }
  
  .mobile-menu-btn {
    display: block !important;
  }
  
  .grid-2, .grid-3, .grid-4 { 
    grid-template-columns: minmax(0, 100%) !important; 
    display: grid !important; 
  }
  
  .hero { padding-top: 100px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* Mobile Menu Active State */
.mobile-nav-active .nav-links {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--surface-color);
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  gap: 15px;
}

.mobile-nav-active .header-actions {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 180px); /* rough estimation based on nav items */
  left: 0;
  width: 100%;
  background-color: var(--surface-color);
  padding: 20px;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
}
