/*
Theme Name: Michał Kołodziejczyk - Trener Personalny
Theme URI: https://trenujemy.pl
Author: Michał Kołodziejczyk
Author URI: https://trenujemy.pl
Description: Profesjonalny motyw WordPress dla studia treningowego Michała Kołodziejczyka. EMS, Flywheel, BFR, trening izometryczny, BlazePod. Warszawa Ursus.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mk-kolodziejczyk
Tags: one-page, custom-background, custom-logo, featured-images, threaded-comments, translation-ready
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════════════════════════════ */
:root {
  --gold: #AC8E5F;
  --gold-light: #C4A97D;
  --gold-dark: #8B7347;
  --navy: #0d0f1a;
  --navy-light: #1a1d2e;
  --navy-card: #141728;
  --text-primary: #ede8df;
  --text-muted: #8a8578;
  --border-color: rgba(172, 142, 95, 0.15);
  --font-body: 'Lato', Arial, sans-serif;
  --font-heading: 'Oswald', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.text-gradient-gold {
  background: linear-gradient(135deg, #C4A97D, #AC8E5F, #8B7347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-gold {
  background: linear-gradient(135deg, #AC8E5F, #C4A97D);
}

.gold-glow {
  box-shadow: 0 0 10px rgba(172, 142, 95, 0.3), 0 0 20px rgba(172, 142, 95, 0.15), 0 0 40px rgba(172, 142, 95, 0.05);
}

.gold-border-glow {
  border-color: rgba(172, 142, 95, 0.5);
  box-shadow: inset 0 0 10px rgba(172, 142, 95, 0.1), 0 0 10px rgba(172, 142, 95, 0.15);
}

.section-padding {
  padding: 6rem 0;
}

.section-padding-sm {
  padding: 4rem 0;
}

.tracking-widest {
  letter-spacing: 0.3em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  border-radius: 0.625rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.btn-gold {
  background: linear-gradient(135deg, #AC8E5F, #C4A97D);
  color: var(--navy);
}

.btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(172, 142, 95, 0.5);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(172, 142, 95, 0.1);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

.section-label {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 15, 26, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 3rem;
  width: auto;
}

.nav-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

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

.nav-links a {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}

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

.nav-links .nav-shop {
  color: var(--gold);
  font-weight: 700;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

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

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

.hero-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy), rgba(13,15,26,0.8), rgba(13,15,26,0.3));
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy), transparent, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.hero-subtitle {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator-pill {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(172, 142, 95, 0.5);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}

.scroll-indicator-dot {
  width: 4px;
  height: 12px;
  background: var(--gold);
  border-radius: 9999px;
  margin-top: 8px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
  padding: 2rem 0;
  background: var(--navy-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stat-value { font-size: 2.5rem; }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 1rem;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy-card);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
}

.about-badge .badge-value {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
}

.about-badge .badge-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-specialties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(20, 23, 40, 0.5);
  border: 1px solid var(--border-color);
}

.specialty-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.specialty-item span {
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════════
   OFFER SECTION
   ═══════════════════════════════════════════════════════════════ */
.offer-section {
  background: rgba(20, 23, 40, 0.3);
}

.offer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
}

.offer-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.5s;
}

.offer-card:hover {
  border-color: rgba(172, 142, 95, 0.5);
}

.offer-card-image {
  position: relative;
  height: 20rem;
  overflow: hidden;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.offer-card:hover .offer-card-image img {
  transform: scale(1.1);
}

.offer-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy), rgba(13,15,26,0.5), transparent);
}

.offer-card-image h3 {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
}

.offer-card-body {
  padding: 1.5rem;
  background: var(--navy-card);
}

.offer-card-body p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.offer-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.offer-feature svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.offer-card .btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   TECHNOLOGIES SECTION
   ═══════════════════════════════════════════════════════════════ */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tech-tab {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.tech-tab.active {
  background: linear-gradient(135deg, #AC8E5F, #C4A97D);
  color: var(--navy);
  border-color: transparent;
}

.tech-tab:hover:not(.active) {
  border-color: rgba(172, 142, 95, 0.5);
}

.tech-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

.tech-card {
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  padding: 1.5rem;
}

.tech-card:hover {
  border-color: rgba(172, 142, 95, 0.5);
}

.tech-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tech-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.9);
  padding: 0.375rem;
  flex-shrink: 0;
}

.tech-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.tech-card .tech-subtitle {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.tech-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tech-case-study {
  background: rgba(172, 142, 95, 0.05);
  border: 1px solid rgba(172, 142, 95, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.tech-case-study .case-name {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-case-study .case-name svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.tech-case-study .case-result {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.tech-science-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.tech-science-content {
  display: none;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.tech-science-content.active {
  display: block;
}

.tech-science-content p {
  font-size: 0.75rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   WHY ME SECTION
   ═══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--navy-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.why-card:hover {
  border-color: rgba(172, 142, 95, 0.4);
}

.why-card svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   PACKAGES SECTION
   ═══════════════════════════════════════════════════════════════ */
.packages-section {
  background: rgba(20, 23, 40, 0.3);
}

.packages-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}

.package-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  padding-top: 2.5rem;
  border: 1px solid var(--border-color);
  background: var(--navy-card);
  transition: all 0.3s;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.package-card.popular {
  border-color: rgba(172, 142, 95, 0.6);
}

.package-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: linear-gradient(135deg, #AC8E5F, #C4A97D);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
}

.package-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.package-original-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
}

.package-price-unit {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.package-features {
  margin-bottom: 2rem;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.package-feature svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 1;
}

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

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

/* ═══════════════════════════════════════════════════════════════
   REVIEWS SECTION
   ═══════════════════════════════════════════════════════════════ */
.reviews-section {
  background: rgba(20, 23, 40, 0.3);
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--navy-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.review-card:hover {
  border-color: rgba(172, 142, 95, 0.4);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.review-stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  fill: var(--gold);
}

.review-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

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

.review-author-name {
  font-size: 0.875rem;
  font-weight: 700;
}

.review-author-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-source {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.review-source.google {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}

.review-source.facebook {
  background: rgba(37, 99, 235, 0.1);
  color: #93c5fd;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 0.75rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  background: var(--navy-card);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.3s;
  font-family: var(--font-body);
}

.faq-question:hover {
  border-color: rgba(172, 142, 95, 0.3);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG CAROUSEL (WordPress posts)
   ═══════════════════════════════════════════════════════════════ */
.blog-carousel-wrap {
  position: relative;
}

.blog-carousel {
  overflow: hidden;
  width: 100%;
}

.blog-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.blog-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .blog-card {
    flex: 0 0 50%;
    padding: 0 0.75rem;
  }
}

@media (min-width: 1024px) {
  .blog-card {
    flex: 0 0 33.333%;
    padding: 0 0.75rem;
  }
}

.blog-card-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.blog-card-body {
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  background: var(--navy-card);
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: var(--text-primary);
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.3s;
}

.blog-card-link:hover {
  gap: 0.625rem;
}

.blog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--navy-card);
  border: 1px solid var(--border-color);
  color: var(--gold);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.blog-arrow:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.blog-arrow-left { left: -1.5rem; }
.blog-arrow-right { right: -1.5rem; }

@media (max-width: 639px) {
  .blog-arrow-left { left: 0.25rem; }
  .blog-arrow-right { right: 0.25rem; }
}

.blog-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.blog-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: background 0.3s;
}

.blog-dot.active {
  background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cta-section .cta-bg {
  position: absolute;
  inset: 0;
}

.cta-section .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section .cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 26, 0.8);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-content h2 { font-size: 3.75rem; }
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   LINKS SECTION
   ═══════════════════════════════════════════════════════════════ */
.links-section {
  background: rgba(20, 23, 40, 0.3);
}

.links-wrap {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}

.links-logo {
  width: 5rem;
  height: auto;
  margin: 0 auto 1rem;
}

.links-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.links-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  background: var(--navy-card);
  margin-bottom: 0.75rem;
  transition: all 0.3s;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.link-button:hover {
  border-color: rgba(172, 142, 95, 0.5);
}

.link-button svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   CONSULTATION FORM
   ═══════════════════════════════════════════════════════════════ */
.consultation-section {
  background: rgba(20, 23, 40, 0.3);
}

.consultation-form {
  max-width: 40rem;
  margin: 0 auto;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--navy);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: none;
}

/* ═══════════════════════════════════════════════════════════════
   GOOGLE REVIEW CTA
   ═══════════════════════════════════════════════════════════════ */
.review-cta {
  background: rgba(20, 23, 40, 0.3);
}

.review-cta-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.review-cta-stars svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  fill: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   PERSONAL CLOSING
   ═══════════════════════════════════════════════════════════════ */
.closing-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .closing-grid { grid-template-columns: 1fr 1fr; }
}

.closing-image {
  border-radius: 1rem;
  overflow: hidden;
}

.closing-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}

.closing-text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.closing-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--navy-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact-item:hover .contact-icon {
  border-color: rgba(172, 142, 95, 0.5);
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.contact-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 700;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--navy-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.contact-social-icon:hover {
  border-color: rgba(172, 142, 95, 0.5);
}

.contact-social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.contact-image {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 25rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  padding: 3rem 0;
  background: var(--navy-card);
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 2.5rem;
  width: auto;
}

.footer-brand span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

/* ═══════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(172, 142, 95, 0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(172, 142, 95, 0.6); }

/* ═══════════════════════════════════════════════════════════════
   PACKAGES CAROUSEL
   ═══════════════════════════════════════════════════════════════ */
.packages-carousel-wrap {
  position: relative;
}

.packages-carousel {
  overflow: hidden;
  width: 100%;
}

.packages-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.packages-carousel-track .package-card {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
}

@media (min-width: 640px) {
  .packages-carousel-track .package-card {
    flex: 0 0 50%;
    padding: 0 0.75rem;
  }
}

@media (min-width: 1024px) {
  .packages-carousel-track .package-card {
    flex: 0 0 33.333%;
    padding: 0 0.75rem;
  }
}

.pkg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--navy-card);
  border: 1px solid var(--border-color);
  color: var(--gold);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.pkg-arrow:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.pkg-arrow-left {
  left: -1.5rem;
}

.pkg-arrow-right {
  right: -1.5rem;
}

@media (max-width: 639px) {
  .pkg-arrow-left { left: 0.25rem; }
  .pkg-arrow-right { right: 0.25rem; }
}

.pkg-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pkg-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: background 0.3s;
}

.pkg-dot.active {
  background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   PACKAGE CARD IMAGE VARIANT
   ═══════════════════════════════════════════════════════════════ */
.package-card-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.package-card:hover .package-card-image img {
  transform: scale(1.1);
}

.package-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 15, 26, 0.95) 0%, rgba(13, 15, 26, 0.3) 100%);
}

.package-card-image .package-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.package-card-image-price {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  padding: 0 1rem;
}

.package-card-image-price h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.package-card-image-price .package-price {
  font-size: 2rem;
}

.package-card-image-price .package-original-price {
  font-size: 0.8125rem;
}

.package-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
