/* ========================================
   PRAWO JOLANTY - Main Stylesheet
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-light: #111d33;
  --navy-mid: #162340;
  --gold: #c9a84c;
  --gold-light: #e0c872;
  --gold-dark: #a8872e;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e5e5e5;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #2d2d2d;
  --text-light: #6b7280;
  --font-heading: 'DM Serif Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.section-padding { padding: 100px 0; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading { margin-bottom: 20px; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.3); }

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,255,255,0.2); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.nav-phone {
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 10px 32px;
  letter-spacing: 0.5px;
}
.nav-phone:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: var(--navy);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
}
.navbar.scrolled .nav-logo-img {
  height: 40px;
  width: 40px;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.nav-logo-text em {
  color: var(--gold);
  font-style: normal;
}
.navbar.scrolled .nav-logo-text {
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10,22,40,0.82) 0%, rgba(15,30,55,0.78) 50%, rgba(26,45,80,0.75) 100%),
              url('../img/hero-team.webp') center/cover no-repeat;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  z-index: 2;
  transition: color 0.3s;
}
.scroll-down:hover { color: var(--gold); }
.scroll-down-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.scroll-down-arrow {
  font-size: 1.4rem;
  animation: bounce-down 1.8s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero h1 {
  margin-bottom: 24px;
  line-height: 1.15;
  max-width: 560px;
}
.hero h1 .accent { color: var(--gold); display: inline; }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
}
.hero-card-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.hero-feature-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ========================================
   ABOUT
   ======================================== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(10,22,40,0.5));
}

.about-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 24px 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(201,168,76,0.3);
}
.about-accent-box .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  display: block;
  white-space: nowrap;
}
.about-accent-box .label {
  font-size: 0.85rem;
  font-weight: 600;
}

.about-content .section-desc { margin-bottom: 30px; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--gray-100);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header .section-desc { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(201,168,76,0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { color: var(--gold); gap: 10px; }

/* ========================================
   TEAM
   ======================================== */
.team { background: var(--white); }

.team-header {
  text-align: center;
  margin-bottom: 60px;
}
.team-header .section-desc { margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-6px); }

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(10,22,40,0.7));
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.team-role {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 8px;
}

.team-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.team-email {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
}
.team-email:hover { color: var(--gold); }

.team-card-link {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  transition: all var(--transition);
}
.team-card-link:hover { color: var(--gold-light); letter-spacing: 0.5px; }

/* Team profile page */
.team-profile {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.team-profile-photo {
  width: 200px;
  min-width: 200px;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
}
.team-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-profile-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
}
.team-profile-role {
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 600;
}
.team-profile-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-profile-contact a {
  color: var(--navy-mid);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.team-profile-contact a:hover { color: var(--gold); }

.team-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

@media (max-width: 768px) {
  .team-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .team-profile-photo { width: 160px; min-width: 160px; }
  .team-profile-info { align-items: center; }
}

/* ========================================
   BLOG PREVIEW (homepage)
   ======================================== */
.blog-preview {
  background: var(--gray-100);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
  position: relative;
}

.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-card-body { padding: 24px; }

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ========================================
   REVIEWS / OPINIE
   ======================================== */
.reviews {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}
.reviews-header .section-desc {
  margin: 0 auto;
  color: rgba(255,255,255,0.6);
}

.reviews-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.reviews-meta {
  text-align: left;
}

.reviews-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.reviews-count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.reviews-track-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -5%;
  padding: 0 5%;
}

.reviews-track {
  display: flex;
  gap: 24px;
  animation: scroll-reviews 40s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
  min-width: 340px;
  max-width: 380px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.25);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.review-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.review-source {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.reviews-google-link:hover { color: var(--gold); }

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-read-more:hover { color: var(--gold); gap: 10px; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
  color: var(--white);
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section .section-desc {
  color: rgba(255,255,255,0.6);
  margin: 0 auto 36px;
  max-width: 550px;
}

.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ========================================
   CONTACT
   ======================================== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: 10px;
  transition: all var(--transition);
}
.contact-card:hover { background: var(--cream); }

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-light);
}
.contact-card a:hover { color: var(--gold-dark); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-800);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color var(--transition);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.form-consent label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}
.form-consent label a { color: var(--gold-dark); text-decoration: underline; }

.form-submit { width: 100%; justify-content: center; }

.form-message {
  display: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-message.success { display: block; background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-message.error { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Map */
.map-section {
  width: 100%;
  height: 400px;
  background: var(--gray-200);
  position: relative;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand .nav-logo-img { height: 42px; width: 42px; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

.footer-credit {
  text-align: center;
  padding: 16px 0;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-credit a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--gold); }

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  min-width: 280px;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.cookie-accept { background: var(--gold); color: var(--navy); }
.cookie-accept:hover { background: var(--gold-light); }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ========================================
   BLOG PAGE
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 160px 0 80px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; }

.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

/* Blog single */
.blog-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

.blog-single-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.blog-single h2 { margin: 40px 0 16px; font-size: 1.6rem; }
.blog-single h3 { margin: 32px 0 12px; font-size: 1.3rem; }
.blog-single p { margin-bottom: 18px; color: var(--text); line-height: 1.85; }
.blog-single ul, .blog-single ol { margin: 0 0 18px 24px; }
.blog-single li { margin-bottom: 8px; line-height: 1.7; color: var(--text); list-style: disc; }
.blog-single blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 24px 0;
  background: var(--cream);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--gray-600);
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 0.9rem;
}
.blog-back:hover { color: var(--gold); }

/* ========================================
   PRIVACY PAGE
   ======================================== */
.privacy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 100px;
}
.privacy-page h2 { margin: 36px 0 16px; font-size: 1.5rem; color: var(--navy); }
.privacy-page h3 { margin: 24px 0 12px; font-size: 1.2rem; }
.privacy-page p { margin-bottom: 14px; line-height: 1.8; }
.privacy-page ul { margin: 0 0 16px 24px; }
.privacy-page li { margin-bottom: 6px; list-style: disc; line-height: 1.7; }
.privacy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}
.privacy-page th, .privacy-page td {
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  text-align: left;
}
.privacy-page th { background: var(--gray-100); font-weight: 600; }

/* ========================================
   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);
}

/* stagger children */
.stagger .fade-up:nth-child(1) { transition-delay: 0.05s; }
.stagger .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger .fade-up:nth-child(3) { transition-delay: 0.15s; }
.stagger .fade-up:nth-child(4) { transition-delay: 0.2s; }
.stagger .fade-up:nth-child(5) { transition-delay: 0.25s; }
.stagger .fade-up:nth-child(6) { transition-delay: 0.3s; }
.stagger .fade-up:nth-child(7) { transition-delay: 0.35s; }
.stagger .fade-up:nth-child(8) { transition-delay: 0.4s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .blog-page-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }
  .nav-logo-img { height: 36px; width: 36px; }
  .nav-logo-text { font-size: 1.15rem; }
  .nav-logo { gap: 8px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-links .btn { width: 80%; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 130px 0 70px; }
  .hero h1 { max-width: 100%; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat-number { font-size: 2rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 300px; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .blog-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
