/* ===== BIASZALON — Kényeztető Masszázs Szalon ===== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --silk-beige: #E9D7CF;
  --powder-pink: #F3C7CF;
  --cream: #F8F5F3;
  --rose-accent: #D79AA4;
  --rose-hover: #C88590;
  --rose-deep: #B8707E;
  --text-main: #3A3A3A;
  --text-light: #6B6B6B;
  --text-muted: #9A8F8A;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 30px rgba(215, 154, 164, 0.12);
  --shadow-card: 0 8px 40px rgba(215, 154, 164, 0.1);
  --shadow-hover: 0 12px 50px rgba(215, 154, 164, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Poppins', 'Helvetica Neue', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

/* --- Silk Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(243, 199, 207, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(233, 215, 207, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(215, 154, 164, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-main);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.section-label {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-accent);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--rose-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(215, 154, 164, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--rose-accent);
  border: 1.5px solid var(--rose-accent);
}

.btn-secondary:hover {
  background: var(--rose-accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.7rem 1.6rem;
  font-size: 0.85rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(248, 245, 243, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
  padding: 0.8rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 1px;
}

.nav-logo span {
  color: var(--rose-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-main);
  position: relative;
  letter-spacing: 0.3px;
}

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

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

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

.nav-cta {
  padding: 0.6rem 1.5rem !important;
  background: var(--rose-accent) !important;
  color: var(--white) !important;
  border-radius: var(--radius-xl) !important;
  font-size: 0.85rem !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--rose-hover) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(248, 245, 243, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
}

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

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--silk-beige) 50%, var(--powder-pink) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(243, 199, 207, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 1s ease forwards;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-accent);
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.9;
}

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

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease 0.3s forwards;
  opacity: 0;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.hero-image-wrapper .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(160deg, var(--silk-beige) 0%, var(--powder-pink) 60%, var(--rose-accent) 100%);
}

.hero-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--white);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: floatUp 3s ease-in-out infinite;
}

.hero-float-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--powder-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-float-card .label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-float-card .value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Decorative elements */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(215, 154, 164, 0.2);
  pointer-events: none;
}

.deco-circle-1 {
  width: 300px; height: 300px;
  top: 10%; right: 5%;
  animation: pulse 6s ease-in-out infinite;
}

.deco-circle-2 {
  width: 150px; height: 150px;
  bottom: 20%; left: 45%;
  animation: pulse 8s ease-in-out infinite reverse;
}

/* --- Sections General --- */
section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

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

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.about-image .placeholder-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(135deg, var(--silk-beige) 0%, var(--powder-pink) 100%);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215, 154, 164, 0.15);
}

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

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.about-content p:last-of-type {
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(215, 154, 164, 0.2);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose-accent);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* --- Services Preview (Homepage) --- */
.services-preview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 154, 164, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-accent), var(--powder-pink));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--powder-pink), var(--silk-beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Full Services Page --- */
.service-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid rgba(215, 154, 164, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-full-card .service-icon {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.service-full-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.service-full-card .service-desc {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-full-card .service-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-full-card .service-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.service-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-benefits .tag {
  background: var(--cream);
  color: var(--rose-accent);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 400;
}

.service-full-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--powder-pink) 0%, var(--silk-beige) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(215, 154, 164, 0.15);
}

.why-item h4 {
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.why-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  position: relative;
  border: 1px solid rgba(215, 154, 164, 0.08);
}

.testimonial-card .quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--powder-pink);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--powder-pink), var(--rose-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
}

.testimonial-author .name {
  font-weight: 500;
  font-size: 0.92rem;
}

.testimonial-author .stars {
  color: var(--rose-accent);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--silk-beige) 0%, var(--powder-pink) 50%, var(--rose-accent) 100%);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  position: relative;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--rose-accent);
  position: relative;
}

.cta-section .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* --- Pricing Page --- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(215, 154, 164, 0.1);
  transition: var(--transition);
  text-align: center;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.price-card.featured {
  border-color: var(--rose-accent);
  position: relative;
}

.price-card.featured::before {
  content: 'Népszerű';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose-accent);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 500;
}

.price-card .price-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--powder-pink), var(--silk-beige));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
}

.price-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.price-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(215, 154, 164, 0.1);
  font-size: 0.92rem;
}

.price-option:last-child {
  border-bottom: none;
}

.price-option .duration {
  color: var(--text-light);
}

.price-option .price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--rose-accent);
  font-size: 1.1rem;
}

.price-card .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(215, 154, 164, 0.08);
}

.contact-card .card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--powder-pink), var(--silk-beige));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-card h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.3rem;
}

.contact-card p, .contact-card a {
  font-size: 0.92rem;
  color: var(--text-light);
}

.contact-card a:hover {
  color: var(--rose-accent);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid rgba(215, 154, 164, 0.08);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid rgba(215, 154, 164, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-main);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose-accent);
  box-shadow: 0 0 0 3px rgba(215, 154, 164, 0.1);
}

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

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 3rem;
  box-shadow: var(--shadow-card);
  height: 350px;
  background: var(--silk-beige);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  text-align: center;
  color: var(--text-muted);
}

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

/* --- Page Header (subpages) --- */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--silk-beige) 50%, rgba(243, 199, 207, 0.3) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.page-header h1 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

/* --- Footer --- */
.footer {
  background: var(--text-main);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

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

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

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

.footer h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.7rem;
}

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

.footer-contact p,
.footer-contact a {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-contact a:hover {
  color: var(--rose-accent);
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--rose-accent);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.15; }
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { order: 2; }
  .hero-visual { order: 1; }

  .hero-text { margin: 0 auto 2.5rem; }
  .hero-buttons { justify-content: center; }
  .hero-image-wrapper { max-width: 360px; margin: 0 auto; }
  .hero-float-card { left: auto; right: -1rem; }

  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .about-stats { justify-content: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-full-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 4rem 0; }

  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .hero h1 { font-size: 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero-float-card { display: none; }
  .deco-circle { display: none; }

  .page-header { padding: 8rem 0 3rem; }

  .btn { padding: 0.85rem 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}
