/* ========================================
   WorkOn Coworking - Style Sheet
   Colors: #7d9765 (accent), #1a1a1a (dark), #f8f8f6 (light bg)
   ======================================== */

/* --- Custom Properties --- */
:root {
  --accent: #7d9765;
  --accent-light: #a3b88f;
  --accent-dark: #5f7a4a;
  --accent-bg: #f2f5ee;
  --dark: #1a1a1a;
  --text: #333;
  --text-light: #666;
  --light-bg: #f8f8f6;
  --white: #ffffff;
  --border: #e5e5e5;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-h: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

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

/* --- Typography --- */
h1, h2, h3, h4 { color: var(--dark); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.accent-text { color: var(--accent); }

section {
  padding: 80px 0;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  height: var(--header-h);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 10px rgba(0,0,0,0.04);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  background: var(--light-bg);
  border-radius: 20px;
  padding: 3px;
  font-size: 0.82rem;
  font-weight: 600;
}

.lang-toggle button {
  padding: 5px 12px;
  border-radius: 17px;
  color: var(--text-light);
  transition: all var(--transition);
  font-weight: 600;
  font-size: 0.82rem;
}

.lang-toggle button.active {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(125,151,101,0.35);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
}

.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #333;
}

.btn svg, .btn img {
  width: 18px;
  height: 18px;
}

/* WhatsApp icon inline */
.wa-icon {
  width: 20px;
  height: 20px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.3) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(92vh - var(--header-h));
}

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

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125,151,101,0.2);
  border: 1px solid rgba(125,151,101,0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* --- Services / USP Grid --- */
.services {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-bg);
  border-radius: 16px;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

/* --- Pricing Section --- */
.pricing {
  background: var(--white);
}

.pricing-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  background: var(--light-bg);
  transition: all var(--transition);
}

.pricing-tab.active {
  background: var(--accent);
  color: var(--white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.pricing-card .duration {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
}

.current-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.currency {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-light);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

/* Students section */
.students-section {
  background: var(--accent-bg);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.students-section h3 {
  margin-bottom: 8px;
}

.students-section p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Drinks menu */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 600px;
  margin: 32px auto 0;
}

.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
}

.drink-item span:last-child {
  font-weight: 700;
  color: var(--accent);
}

/* Pricing Table Layout */
.pricing-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.pricing-table thead th {
  background: var(--accent);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}

.pricing-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

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

.pricing-table tbody tr:hover {
  background: var(--accent-bg);
}

.pricing-table .price-cell {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.05rem;
}

.pricing-table .old-price-cell {
  text-decoration: line-through;
  color: #999;
  font-size: 0.85rem;
  margin-right: 8px;
}

.pricing-table .popular-row {
  background: var(--accent-bg);
}

.pricing-table .popular-row td:first-child::after {
  content: "Populaire";
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 0.95rem;
}

/* Benefits list in pricing */
.benefits-section {
  margin-top: 40px;
  padding: 32px;
  background: var(--light-bg);
  border-radius: var(--radius);
}

.benefits-section h4 {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.benefits-included {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.benefit-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--accent);
}

.benefits-by-plan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.plan-benefits {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border);
}

.plan-benefits h5 {
  font-size: 0.95rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-bg);
}

.plan-benefits ul {
  list-style: none;
}

.plan-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  padding: 4px 0;
  color: var(--text);
}

.plan-benefits li svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  color: var(--accent);
}

/* --- Gallery Section --- */
.gallery {
  background: var(--light-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-cta {
  text-align: center;
  margin-top: 32px;
}

/* --- Spaces Section --- */
.spaces {
  background: var(--white);
}

.space-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.space-block:nth-child(even) {
  direction: rtl;
}

.space-block:nth-child(even) > * {
  direction: ltr;
}

.space-block:last-child {
  margin-bottom: 0;
}

.space-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: var(--radius);
  overflow: hidden;
}

.space-images img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.space-images img:first-child {
  grid-column: span 2;
  height: 260px;
}

.space-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.space-info p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.space-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.space-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-bg);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-dark);
}

.space-feature svg {
  width: 14px;
  height: 14px;
}

/* Coming soon overlay for private office */
.coming-soon-space {
  position: relative;
}

.coming-soon-space .space-images {
  opacity: 0.6;
  filter: grayscale(30%);
}

.coming-soon-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--dark);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 2;
}

/* --- Reviews Section --- */
.reviews {
  background: var(--light-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.review-stars {
  color: #f4b740;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.review-card p {
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.7;
}

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

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

/* --- About Section --- */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-images img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 220px;
  width: 100%;
}

.about-images img:first-child {
  grid-column: span 2;
  height: 280px;
}

.about-content h2 {
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.value-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--accent-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.value-icon svg {
  width: 18px;
  height: 18px;
}

.value-item h4 {
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.value-item p {
  font-size: 0.82rem;
  margin: 0;
}

/* --- Location Mini Block --- */
.location-mini {
  background: var(--accent);
  color: var(--white);
  padding: 48px 0;
}

.location-mini .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.location-mini h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.location-mini p {
  opacity: 0.85;
}

/* --- Contact Section --- */
.contact {
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-channel:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.channel-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--accent-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.channel-icon svg {
  width: 20px;
  height: 20px;
}

.channel-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.channel-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.contact-hours {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-hours h4 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-hours p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--light-bg);
  transition: all var(--transition);
  outline: none;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(125,151,101,0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 16px;
}

.form-success h4 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Map */
.contact-map {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  color: var(--accent-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* Partners Section */
.partners {
  background: var(--light-bg);
  padding: 60px 0;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
  opacity: 0.6;
}

.partners-logos img {
  height: 48px;
  width: auto;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.partners-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partners-placeholder {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  padding: 24px;
}

/* Booking Button */
.btn-booking {
  background: var(--accent);
  color: var(--white);
}

.btn-booking:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(125,151,101,0.35);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 1001;
  display: none;
  border-top: 1px solid var(--border);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  font-size: 0.82rem;
  padding: 8px 18px;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


.partners-grid { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:60px; padding:30px 0; }
.partner-logo { display:flex; align-items:center; justify-content:center; }
.partner-logo img { max-height:130px; max-width:280px; object-fit:contain; filter:grayscale(100%); opacity:0.6; transition:all 0.3s ease; }
.partner-logo img:hover { filter:grayscale(0%); opacity:1; }
/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  section { padding: 56px 0; }

  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav.open { transform: translateX(0); }

  .nav-links {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .nav-links a {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
  }

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero { min-height: 80vh; }
  .hero-content h1 { font-size: 2rem; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .space-block,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .space-block:nth-child(even) { direction: ltr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .location-mini .container {
    flex-direction: column;
    text-align: center;
  }

  .students-section { padding: 28px 20px; }

  .about-values {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 10px 12px;
  }

  .benefits-included {
    grid-template-columns: 1fr;
  }

  .benefits-by-plan {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .service-card {
    padding: 20px 12px;
  }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .drinks-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Page visibility (SPA navigation) --- */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

/* Home page sections are always in the home view */
#home.active ~ .home-section {
  display: block;
}

/* ========================================
   Premium Animations & Enhancements
   ======================================== */

/* Staggered fade-up animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.services-grid .service-card,
.reviews-grid .review-card,
.benefits-by-plan .plan-benefits,
.gallery-grid .gallery-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible .service-card,
.fade-up.visible .review-card,
.fade-up.visible .plan-benefits,
.fade-up.visible .gallery-item {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.visible .service-card:nth-child(1),
.fade-up.visible .review-card:nth-child(1),
.fade-up.visible .gallery-item:nth-child(1) { transition-delay: 0.05s; }
.fade-up.visible .service-card:nth-child(2),
.fade-up.visible .review-card:nth-child(2),
.fade-up.visible .gallery-item:nth-child(2) { transition-delay: 0.1s; }
.fade-up.visible .service-card:nth-child(3),
.fade-up.visible .review-card:nth-child(3),
.fade-up.visible .gallery-item:nth-child(3) { transition-delay: 0.15s; }
.fade-up.visible .service-card:nth-child(4),
.fade-up.visible .gallery-item:nth-child(4) { transition-delay: 0.2s; }
.fade-up.visible .service-card:nth-child(5),
.fade-up.visible .gallery-item:nth-child(5) { transition-delay: 0.25s; }
.fade-up.visible .service-card:nth-child(6),
.fade-up.visible .gallery-item:nth-child(6) { transition-delay: 0.3s; }
.fade-up.visible .service-card:nth-child(7) { transition-delay: 0.35s; }
.fade-up.visible .service-card:nth-child(8) { transition-delay: 0.4s; }
.fade-up.visible .service-card:nth-child(9) { transition-delay: 0.45s; }
.fade-up.visible .service-card:nth-child(10) { transition-delay: 0.5s; }
.fade-up.visible .service-card:nth-child(11) { transition-delay: 0.55s; }
.fade-up.visible .service-card:nth-child(12) { transition-delay: 0.6s; }
.fade-up.visible .service-card:nth-child(13) { transition-delay: 0.65s; }
.fade-up.visible .service-card:nth-child(14) { transition-delay: 0.7s; }

/* Premium hero animations */
.hero-content .hero-badge {
  animation: slideInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-content h1 {
  animation: slideInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-content p {
  animation: slideInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-actions {
  animation: slideInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

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

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

/* Premium service card styling */
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(125,151,101,0.15);
  border-color: rgba(125,151,101,0.2);
}

/* Premium button animations */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

/* Premium review cards */
.review-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--accent-bg);
  line-height: 1;
  z-index: 0;
  transition: color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--accent-light);
}

.review-card:hover::before {
  color: rgba(125,151,101,0.15);
}

/* Premium pricing table hover */
.pricing-table tbody tr {
  transition: all 0.3s ease;
}

.pricing-table tbody tr:hover {
  background: var(--accent-bg);
  transform: scale(1.01);
}

/* Premium gallery hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(125,151,101,0.3) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

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

/* Premium space block animations */
.space-block {
  transition: all 0.4s ease;
}

.space-images img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.space-images:hover img {
  transform: scale(1.03);
}

/* Premium section headers */
.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}

/* Smooth header transition */
.header {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Premium location mini section */
.location-mini {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  position: relative;
  overflow: hidden;
}

.location-mini::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

/* Premium value items animation */
.value-item {
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateX(6px);
}

.value-item:hover .value-icon {
  background: var(--accent);
  color: var(--white);
}

/* Contact channel premium hover */
.contact-channel {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-channel:hover {
  transform: translateX(6px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(125,151,101,0.12);
}

/* Premium footer social icons */
.footer-social a {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social a:hover {
  transform: translateY(-4px) scale(1.1);
}

/* Floating WhatsApp premium pulse */
.whatsapp-float {
  animation: pulse-wa-premium 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-wa-premium {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 40px rgba(37,211,102,0.5);
    transform: scale(1.05);
  }
}

/* Premium students section */
.students-section {
  background: linear-gradient(135deg, var(--accent-bg) 0%, rgba(163,184,143,0.15) 100%);
  border: 1px solid rgba(125,151,101,0.1);
}

.coming-soon-badge {
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Smooth scroll indicator */
.hero::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  z-index: 3;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  z-index: 4;
  animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
  0%, 100% { bottom: 40px; opacity: 1; }
  50% { bottom: 32px; opacity: 0.3; }
}

/* Benefits plan card premium */
.plan-benefits {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-benefits:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: var(--accent-light);
}

/* Partners placeholder subtle animation */
.partners-placeholder {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, rgba(125,151,101,0.03) 0%, rgba(125,151,101,0.08) 100%);
  border-radius: var(--radius);
  border: 1px dashed rgba(125,151,101,0.2);
}

/* Premium pricing note */
.pricing-note {
  position: relative;
  padding: 12px 24px;
  background: rgba(125,151,101,0.08);
  border-radius: 50px;
  display: inline-block;
}

/* Nav link premium underline */
.nav-links a::after {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 1px;
}

/* Premium cookie banner */
.cookie-banner {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.95);
  animation: slideUpBanner 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpBanner {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === MOBILE MENU FIX - DARK BG === */
@media (max-width: 768px) {
  .nav {
    background: #1a1a1a !important;
    box-shadow: -4px 0 30px rgba(0,0,0,0.4) !important;
  }
  .nav.open,
  .nav.active {
    background: #1a1a1a !important;
  }
  .nav .nav-links li,
  .nav.open .nav-links li,
  .nav.active .nav-links li {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .nav .nav-links a,
  .nav.open .nav-links a,
  .nav.active .nav-links a,
  .nav-links a {
    color: #ffffff !important;
    font-weight: 500 !important;
    font-size: 1.2rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 14px 24px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: #a3b899 !important;
  }
  .menu-toggle span {
    background: #2d3a2e !important;
    height: 3px !important;
  }
  .header {
    background: #ffffff !important;
  }
  .nav .lang-switch,
  .nav .lang-switch button {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.3) !important;
  }
  .nav .lang-switch button.active {
    background: #6b7c5e !important;
    color: #ffffff !important;
  }
  .nav .btn-primary,
  .nav .whatsapp-btn,
  .nav a[href*="wa.me"] {
    background: #6b7c5e !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    margin: 10px 24px !important;
  }
}