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

:root {
  --brand: #FF6B9D;
  --brand-dark: #E5577F;
  --brand-light: #FFB6D9;
  --accent: #4ECDC4;
  --dark: #2C3E50;
  --gray: #7F8C8D;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: linear-gradient(rgba(255, 150, 100, 0.4), rgba(255, 100, 150, 0.4), rgba(255, 180, 120, 0.4)),
              url('PetSittingImages/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

/* Add scroll margin to all sections for smooth anchor navigation */
section[id] {
  scroll-margin-top: 80px;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Logo */
.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transform: scale(1.5);
}

/* Gagalin font za sve naslove */
h1, h2, h3, h4, h5, h6, .logo, .navbar {
  font-family: 'Gagalin', 'Montserrat', sans-serif;
}

/* HEADER & NAVIGATION */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

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

/* Keep language switch and user profile on same line */
#navUser,
#lang-switch {
  flex-shrink: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.nav-links a:hover {
  background: rgba(255, 107, 157, 0.1);
  color: var(--brand);
}

/* User pill styling */
.user-pill {
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Language switch - FIXED POSITION */
#lang-switch.lang-switch {
  display: flex;
  gap: 6px;
  margin-left: 0.5rem;
}

#lang-switch .lang-btn {
  width: 32px;
  height: 24px;
  padding: 0;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lang-switch .lang-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-sm);
}

#lang-switch .lang-btn.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(255, 107, 157, 0.2);
}

#lang-switch .lang-btn img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* MOBILE RESPONSIVE */

@media (max-width: 992px) {
  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .nav-links {
    gap: 0.3rem;
  }
  
  .nav-links a {
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    gap: 0;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .nav-links a {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  
  #lang-switch.lang-switch {
    width: 100%;
    justify-content: center;
    padding: 1rem 0;
    margin-left: 0;
  }
}

/* HERO SECTION */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.option-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.option-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.option-card h3 {
  padding: 1.2rem;
  text-align: center;
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(to right, rgba(255, 107, 157, 0.05), rgba(78, 205, 196, 0.05));
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.secondary-btn {
  background: white;
  color: var(--brand);
  border: 2px solid var(--brand);
}

/* SECTIONS */

.about, .services, .contact, .cta {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 3rem auto;
  max-width: 1200px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about h2, .services h2, .contact h2, .cta h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.about p, .services p, .contact p, .cta p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.about ul, .services ul, .contact ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about li, .services li, .contact li {
  padding: 0.5rem 0;
  text-align: center;
}

/* Team members in About section */
.about-team {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.team-member .member-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

/* MOBILE RESPONSIVE - HERO & SECTIONS */

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .service-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .service-options {
    grid-template-columns: 1fr;
  }
  
  .about, .services, .contact, .cta {
    padding: 3rem 2rem;
    margin: 2rem 1rem;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .about, .services, .contact, .cta {
    padding: 2rem 1.5rem;
  }
}

/* FOOTER */

footer {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 0;
  text-align: center;
  margin-top: 3rem;
}

footer p {
  color: var(--gray);
  margin: 0;
  font-size: 0.8rem;
}

/* AUTH PAGES (LOGIN, REGISTER) */

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

.auth-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.5s ease;
}

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

.auth-card h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.auth-card .sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2rem;
}

.auth-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.auth-grid .full {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-grid label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.auth-grid input {
  padding: 0.9rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.auth-grid input:focus {
  outline: none;
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.auth-card button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.auth-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.auth-card button:active {
  transform: translateY(0);
}

.auth-split {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.auth-split .line {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.auth-split span {
  color: var(--gray);
  font-size: 0.9rem;
}

.auth-links {
  text-align: center;
  margin-top: 1rem;
}

.auth-links a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.auth-links a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* Responsive auth pages */
@media (max-width: 480px) {
  .auth-card {
    padding: 2rem 1.5rem;
  }
  
  .auth-card h2 {
    font-size: 1.6rem;
  }
}

/* REVIEWS PAGE */

#review-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 560px;
}

#review-form label {
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

#review-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  transition: all 0.3s ease;
  background: #f8f9fa;
  margin-top: 0.5rem;
}

#review-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.paw-rating {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.paw-rating .paw {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.4;
}

.paw-rating .paw:hover,
.paw-rating .paw.selected {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.2);
}

#eligibility-hint {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  margin: 3rem 0;
}

#reviews-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.review-card,
#reviews-list .card {
  background: white;
  border-radius: 8px;
  padding: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  width: fit-content;
  max-width: 100%;
}

.review-card:hover,
#reviews-list .card:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

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

.review-user {
  font-weight: 600;
  color: var(--dark);
  font-size: 1.1rem;
}

.review-rating {
  font-size: 1.2rem;
}

.review-content {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.review-date {
  font-size: 0.85rem;
  color: #999;
}

@media (max-width: 768px) {
  #review-form {
    padding: 1.5rem;
  }
  
  .paw-rating .paw {
    font-size: 1.5rem;
  }
}

/* Reviews Page Specific Styles */
.reviews-main {
  min-height: calc(100vh - 80px);
  padding: 1.5rem 0;
}

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

.page-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.review-form-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.review-form-card {
  max-width: 100%;
}

.form-row {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  transition: all 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.hint-text {
  display: block;
  margin-top: 0.75rem;
  color: var(--gray);
  font-size: 0.8rem;
  line-height: 1.4;
  font-style: italic;
}

.review-card,
#reviews-list .card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.review-card:hover,
#reviews-list .card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

#reviews-list .card .rating {
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#reviews-list .card .stars {
  color: #f39c12;
}

#reviews-list .card .content {
  color: var(--gray);
  line-height: 1.6;
}

#reviews-list .card .muted {
  color: #999;
}

.reviews-list-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.review-card,
#reviews-list .card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.review-card:hover,
#reviews-list .card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.review-card,
#reviews-list .card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.review-card:hover,
#reviews-list .card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .reviews-main {
    padding: 1rem 0;
  }
  
  .reviews-container {
    padding: 0 1rem;
  }
  
  .page-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  
  .review-form-section {
    padding: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
  }
  
  .reviews-list-section {
    padding: 1rem;
  }
  
  .form-row {
    margin-bottom: 0.75rem;
  }
  
  .paw-rating {
    gap: 0.3rem;
    margin: 0.5rem 0;
  }
  
  .paw-rating .paw {
    font-size: 1.5rem;
  }
  
  .form-textarea {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
  
  .hint-text {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .review-card,
  #reviews-list .card {
    max-width: 100%;
    padding: 0.875rem;
  }
  
  footer {
    padding: 0.75rem 0;
  }
  
  footer p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .review-form-section,
  .reviews-list-section {
    padding: 0.875rem;
    border-radius: 12px;
  }
  
  .paw-rating .paw {
    font-size: 1.3rem;
  }
  
  .btn {
    width: 100%;
    padding: 0.85rem;
  }
}

footer p {
  color: var(--gray);
}

/* ADMIN PANEL RESPONSIVE */

.admin-wrap {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  font-size: 0.9rem;
  white-space: nowrap;
}

.admin-table th,
.admin-table td {
  padding: 0.6rem 0.5rem;
}

.admin-table th {
  font-size: 0.85rem;
}

/* Laptop/Tablet optimization */
@media (max-width: 1400px) {
  .admin-table {
    font-size: 0.8rem;
  }
  
  .admin-table th,
  .admin-table td {
    padding: 0.4rem 0.3rem;
  }
  
  .btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .admin-actions {
    gap: 3px !important;
    flex-wrap: nowrap;
  }
  
  .btn-approve,
  .btn-reject {
    min-width: 50px;
  }
  
  /* Hide Trajanje column on smaller laptops */
  .admin-table th:nth-child(5),
  .admin-table td:nth-child(5) {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .admin-wrap {
    padding: 1.5rem;
  }
  
  .admin-table th,
  .admin-table td {
    padding: 0.4rem 0.25rem;
    font-size: 0.75rem;
  }
  
  .btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* Mobile: Convert table to cards */
@media (max-width: 992px) {
  .admin-table {
    border: none;
    background: transparent;
  }
  
  .admin-table thead {
    display: none;
  }
  
  .admin-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .admin-table tr {
    display: flex;
    flex-direction: column;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  
  .admin-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .admin-table td:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
  }
  
  .admin-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--brand);
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .admin-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem !important;
  }
  
  .admin-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .btn-approve,
  .btn-reject {
    width: 100%;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
  }
}

/*hamburger stays fixed on scroll */
@media (max-width: 768px) {
  .hamburger {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .admin-wrap {
    padding: 1.5rem;
    margin: 1rem auto;
  }
}

/* UTILITY CLASSES */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* GALLERY SECTION */

.gallery-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 2rem;
  border: 2px solid var(--brand);
  background: white;
  color: var(--brand);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border-color: transparent;
}

.gallery-carousel {
  position: relative;
  margin-top: 2rem;
  padding: 0 60px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--brand);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  color: var(--brand);
}

.carousel-btn:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

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

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.gallery-track-container {
  overflow: hidden;
  width: 100%;
}

.gallery-grid {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  padding: 1rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  width: 320px;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: transparent;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive Gallery */
@media (max-width: 1024px) {
  .gallery-item {
    width: 280px;
  }
  
  .gallery-carousel {
    padding: 0 50px;
  }
  
  .carousel-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 2rem 1rem;
  }
  
  .gallery-section h2 {
    font-size: 2rem;
  }
  
  .gallery-carousel {
    padding: 0 40px;
  }
  
  .gallery-item {
    width: 240px;
  }
  
  .gallery-item img {
    height: 240px;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  
  .tab-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-carousel {
    padding: 0 35px;
  }
  
  .gallery-item {
    width: calc(100vw - 120px);
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .carousel-btn {
    width: 32px;
    height: 32px;
  }
  
  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .gallery-tabs {
    gap: 0.5rem;
  }
  
  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

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

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomIn 0.3s ease;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 50px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10001;
}

.lightbox-close:hover {
  color: var(--brand);
  background: rgba(255, 107, 157, 0.2);
  border-color: var(--brand);
  transform: rotate(90deg);
}

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

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    width: 100vw;
    height: 100vh;
    padding: 0;
  }
  
  .lightbox-content img {
    max-width: 85vw;
    max-height: 75vh;
    border-radius: 8px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .lightbox-content {
    width: 100vw;
    height: 100vh;
    padding: 0;
  }
  
  .lightbox-content img {
    max-width: 85vw;
    max-height: 70vh;
    border-radius: 4px;
  }
  
  .lightbox-close {
    width: 45px;
    height: 45px;
    font-size: 35px;
  }
}

/* ==================== PRICING SECTION ==================== */

.pricing {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 3rem auto;
  max-width: 1200px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.pricing h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.pricing-card.highlight {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
  border-color: var(--brand);
}

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

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  margin: 1.5rem 0;
  font-family: 'Gagalin', sans-serif;
}

.pricing-description {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.pricing-description-en {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.5;
}

.pricing-note {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 15px;
  margin-top: 2rem;
  text-align: left;
}

.pricing-note p {
  margin: 0.5rem 0;
  color: #856404;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-note p:first-child {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.pricing-note em {
  color: #a67c00;
}

/* Responsive pricing */
@media (max-width: 768px) {
  .pricing {
    padding: 3rem 2rem;
    margin: 2rem 1rem;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pricing {
    padding: 2rem 1.5rem;
  }
  
  .pricing h2 {
    font-size: 1.8rem;
  }
  
  .pricing-icon {
    font-size: 2.5rem;
  }
  
  .pricing-price {
    font-size: 1.75rem;
  }
}
