/* ============================================================
   Elit Çiçek Tasarım — Premium Pastel CSS
   Design & Dev by Yazılım Eviniz | yazilimeviniz.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── Root Design Tokens ── */
:root {
  --primary:      #d46a83;
  --primary-dark: #b84e67;
  --accent:       #e8a87c;
  --accent-light: #fcefe3;
  --mint:         #cff0cc;
  --lavender:     #e5dbf0;
  --bg-creme:     #fffbf7;
  --text-dark:    #3d3537;
  --text-muted:   #7d7576;
  --white:        #ffffff;
  --shadow-soft:  0 12px 40px rgba(229,219,240,0.45);
  --shadow-hover: 0 20px 55px rgba(212,106,131,0.18);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.07);
  --transition:   all 0.45s cubic-bezier(0.16,1,0.3,1);
  --font-heading: 'Marcellus', serif;
  --font-body:    'Outfit', sans-serif;
  --radius-lg:    24px;
  --radius-md:    16px;
  --radius-sm:    10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-creme);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

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

a { cursor: pointer; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
header {
  position: fixed;
  top: 18px;
  left: 4%;
  width: 92%;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(212,106,131,0.12);
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

header.scrolled {
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(212,106,131,0.08);
}

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }

.logo-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 30px;
  transition: var(--transition);
  display: inline-block;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  background: rgba(212,106,131,0.07);
}

.btn-header {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 30px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  box-shadow: 0 5px 18px rgba(212,106,131,0.25);
}

.btn-header:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212,106,131,0.35) !important;
}

.nav-whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 30px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  box-shadow: 0 5px 18px rgba(37,211,102,0.3) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.nav-whatsapp-btn:hover {
  background: linear-gradient(135deg, #1da557, #0f7a6e) !important;
  transform: translateY(-2px) !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
@keyframes floatingCard {
  0%, 100% { transform: translateY(0px) rotate(-0.5deg); }
  50%       { transform: translateY(-18px) rotate(0.5deg); }
}

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

@keyframes petal1 {
  0%,100% { transform: translate(0,0) rotate(0deg); opacity: 0.5; }
  33%     { transform: translate(30px,-20px) rotate(120deg); opacity: 0.8; }
  66%     { transform: translate(-20px,15px) rotate(240deg); opacity: 0.6; }
}
@keyframes petal2 {
  0%,100% { transform: translate(0,0) rotate(0deg); opacity: 0.6; }
  50%     { transform: translate(-40px,20px) rotate(180deg); opacity: 0.9; }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(130deg, #fffbf7 0%, #feefe5 50%, #f5edf8 100%);
  padding-top: 130px;
  position: relative;
  overflow: hidden;
}

.hero-petal {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-petal.p1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229,219,240,0.65) 0%, transparent 70%);
  top: 5%; right: -8%;
  animation: petal1 12s ease-in-out infinite;
}
.hero-petal.p2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(207,240,204,0.55) 0%, transparent 70%);
  bottom: -5%; left: -5%;
  animation: petal2 15s ease-in-out infinite;
}
.hero-petal.p3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(232,168,124,0.4) 0%, transparent 70%);
  top: 60%; right: 30%;
  animation: petal1 10s ease-in-out infinite reverse;
}

.hero-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 40px 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { animation: fadeSlideUp 0.8s ease both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: var(--white);
  border: 1px solid rgba(212,106,131,0.22);
  color: var(--primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-title {
  font-size: 62px;
  line-height: 1.13;
  margin-bottom: 22px;
  color: var(--text-dark);
}

.hero-title span {
  color: var(--primary);
  font-style: italic;
  position: relative;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(212,106,131,0.1);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary);
  display: block;
}

.hero-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-img-card {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(212,106,131,0.2);
  border: 1px solid rgba(212,106,131,0.08);
  width: 100%;
  max-width: 440px;
  position: relative;
}

.floating-hero-card {
  animation: floatingCard 5s ease-in-out infinite;
}

.hero-img-card img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-img-tag {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid rgba(212,106,131,0.1);
}

.hero-img-tag.tag-top {
  top: -12px;
  left: -20px;
}

.hero-img-tag.tag-bottom {
  bottom: -12px;
  right: -20px;
}

.hero-img-tag i { color: var(--primary); font-size: 16px; }

/* ============================================================
   CAMPAIGN / MARQUEE TICKER
   ============================================================ */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.campaign-banner {
  background: linear-gradient(90deg, rgba(252,239,227,1) 0%, rgba(229,219,240,1) 100%);
  color: var(--primary-dark);
  padding: 17px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,106,131,0.07);
  border-bottom: 1px solid rgba(212,106,131,0.07);
}

.marquee-wrapper { overflow: hidden; }

.marquee-content {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0 30px;
  color: var(--primary-dark);
}

.marquee-content span i { color: var(--primary); font-size: 14px; }

/* ============================================================
   BUTTONS — Global
   ============================================================ */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 10px 28px rgba(212,106,131,0.28);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(212,106,131,0.4);
}

.btn-secondary {
  background: var(--white);
  border: 1.5px solid rgba(212,106,131,0.22);
  color: var(--primary);
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 8px 22px rgba(37,211,102,0.25);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}

.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
}

.btn-readmore:hover {
  gap: 12px;
  border-bottom-color: var(--primary);
}

.btn-order {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 18px rgba(212,106,131,0.25);
  cursor: pointer;
  border: none;
}

.btn-order:hover { transform: translateY(-2px); }

/* ============================================================
   SECTION — Common Layout Helpers
   ============================================================ */
section { padding: 110px 0; }

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 65px auto;
}

.section-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: 44px;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}

/* ============================================================
   FEATURES / WHY CHOOSE US
   ============================================================ */
.features { background: var(--white); }

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

.feature-card {
  background: var(--bg-creme);
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229,219,240,0.6);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212,106,131,0.18);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-light), var(--lavender));
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 28px auto;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 21px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about { background: linear-gradient(135deg, #fffbf7 0%, #fdf0f8 100%); }

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

.about-image { position: relative; }

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(212,106,131,0.15);
}

.about-experience {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(212,106,131,0.35);
  text-align: center;
}

.about-experience .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
}

.about-experience .lbl {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-top: 3px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 16.5px;
  margin-bottom: 18px;
  line-height: 1.85;
}

.about-content h2 { font-size: 38px; margin-bottom: 20px; margin-top: 14px; }

.about-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-light);
  color: var(--primary-dark);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS / GOOGLE REVIEWS
   ============================================================ */
.testimonials { background: var(--white); }

.google-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--bg-creme);
  border: 1px solid rgba(212,106,131,0.1);
  padding: 20px 34px;
  border-radius: var(--radius-lg);
  margin-bottom: 55px;
  box-shadow: var(--shadow-soft);
  flex-wrap: wrap;
}

.google-stars { display: flex; gap: 4px; }
.google-stars i { color: #fbbc04; font-size: 18px; }

.google-rating-num {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--text-dark);
}

.google-rating-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

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

.testimonial-card {
  background: var(--bg-creme);
  border: 1px solid rgba(229,219,240,0.7);
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px; right: 22px;
  font-family: var(--font-heading);
  font-size: 64px;
  color: rgba(212,106,131,0.12);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212,106,131,0.2);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.testimonial-user { display: flex; align-items: center; gap: 14px; }

.user-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.user-name { font-size: 15.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }

.user-meta { font-size: 12px; color: var(--text-muted); }

.testimonial-body { color: var(--text-muted); font-size: 15px; line-height: 1.75; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #a8375a 50%, #7a2040 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}

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

.cta-title {
  font-size: 46px;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog { background: var(--bg-creme); }

.blog-grid { display: grid; gap: 30px; }

.blog-grid-three { grid-template-columns: repeat(3, 1fr); }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(229,219,240,0.5);
  transition: var(--transition);
}

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

.blog-img { overflow: hidden; height: 220px; }

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-content { padding: 26px; }

.blog-date {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq { background: var(--white); }

.faq-filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.faq-tab-btn {
  padding: 10px 22px;
  border: 1.5px solid rgba(212,106,131,0.2);
  background: transparent;
  color: var(--text-muted);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.faq-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.faq-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(212,106,131,0.28);
}

.faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid rgba(229,219,240,0.8);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-creme);
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(212,106,131,0.25);
  box-shadow: 0 6px 24px rgba(212,106,131,0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-question i { color: var(--primary); flex-shrink: 0; font-size: 14px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--bg-creme); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 18px; }

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(229,219,240,0.7);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-light), var(--lavender));
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.info-card p { color: var(--text-muted); font-size: 14.5px; }
.info-card a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.info-card a:hover { color: var(--primary); }

.contact-form-container {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229,219,240,0.6);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label { font-size: 14px; font-weight: 600; color: var(--text-dark); }

.input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(229,219,240,0.9);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-creme);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.input:focus {
  border-color: rgba(212,106,131,0.45);
  box-shadow: 0 0 0 4px rgba(212,106,131,0.08);
  background: var(--white);
}

.input::placeholder { color: var(--text-muted); }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  padding: 0;
  line-height: 0;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: linear-gradient(160deg, #2e2428 0%, #1e181a 100%);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-info-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.footer-info-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 22px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links li { display: flex; align-items: flex-start; gap: 6px; }

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-links li:not(:has(a)) { color: rgba(255,255,255,0.55); font-size: 14px; }

.working-hours { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.working-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 10px;
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ── Yazılım Eviniz imza ── */
.flex { display: flex; }
.items-center { align-items: center; }
.gap-4 { gap: 16px; }
.bg-white { background: #ffffff; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.rounded-\[10px\] { border-radius: 10px; }
.gap-2 { gap: 8px; }

/* ============================================================
   FLOATING ACTION BUTTONS (WhatsApp, Arama, Konum)
   ============================================================ */
.fab-group {
  position: fixed;
  bottom: 30px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
  cursor: pointer;
  border: none;
  position: relative;
}

.fab-btn:hover { transform: scale(1.12) translateY(-3px); }

.fab-btn .fab-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(30,24,26,0.88);
  color: #fff;
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  font-family: var(--font-body);
}

.fab-btn:hover .fab-tooltip { opacity: 1; }

.fab-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  width: 62px;
  height: 62px;
  font-size: 26px;
  box-shadow: 0 8px 26px rgba(37,211,102,0.4);
}

.fab-phone {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.fab-map {
  background: linear-gradient(135deg, #4285f4, #1a5dc8);
  color: #fff;
}

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 8px 0 env(safe-area-inset-bottom);
}

.mobile-bottom-nav { display: none; }

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  padding: 4px 0;
  transition: var(--transition);
}

.mobile-nav-item i { font-size: 18px; }

.mobile-nav-item:hover,
.mobile-nav-item.active { color: var(--primary); }

.mobile-nav-item.wp-special {
  color: #25d366;
}

/* ============================================================
   PRODUCTS PAGE (hizmetler.html)
   ============================================================ */
.page-hero {
  background: linear-gradient(130deg, #feefe5 0%, #f5edf8 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,219,240,0.6) 0%, transparent 70%);
}

.page-hero .section-title { font-size: 52px; }

.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 55px;
}

.filter-btn {
  padding: 11px 26px;
  border: 1.5px solid rgba(212,106,131,0.2);
  background: transparent;
  color: var(--text-muted);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover { border-color: var(--primary); color: var(--primary); }

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(212,106,131,0.28);
}

.flower-category-block { margin-bottom: 65px; }

.category-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.category-heading h2 {
  font-size: 28px;
  color: var(--text-dark);
}

.category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,106,131,0.25), transparent);
}

.flower-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.flower-item-card {
  background: var(--white);
  border: 1px solid rgba(229,219,240,0.7);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.flower-item-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

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

.flower-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212,106,131,0.2);
}

.flower-item-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.flower-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.flower-item-card:hover .flower-item-img-wrap img {
  transform: scale(1.08);
}

.flower-item-info-wrap {
  padding: 4px 0 0;
}

.flower-item-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

/* ============================================================
   BLOG DETAIL PAGE
   ============================================================ */
.blog-detail-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,106,131,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.blog-detail-nav {
  max-width: 1260px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-detail-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 28px 80px;
}

.blog-detail-article h1 { font-size: 48px; margin-bottom: 20px; color: var(--text-dark); }

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(229,219,240,0.8);
  flex-wrap: wrap;
}

.blog-detail-meta i { color: var(--primary); }

.blog-detail-content h2 { font-size: 28px; margin: 35px 0 16px; color: var(--text-dark); }
.blog-detail-content p { color: var(--text-muted); font-size: 16.5px; line-height: 1.85; margin-bottom: 20px; }
.blog-detail-content ul, .blog-detail-content ol { padding-left: 22px; color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 50px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Header becomes simple top bar on mobile */
  header {
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 0;
  }

  .nav-menu { display: none; }

  .nav-container { padding: 12px 18px; }

  /* Sections */
  section { padding: 70px 0; }

  .container { padding: 0 18px; }

  .section-title { font-size: 32px; }

  /* Hero */
  .hero { padding-top: 90px; }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title { font-size: 38px; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .hero-img-card { max-width: 90%; margin: 0 auto; }

  .hero-img-card img { height: 280px; }

  .hero-img-tag { display: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 20px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-experience {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    display: inline-block;
  }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-title { font-size: 30px; }

  /* Blog */
  .blog-grid-three { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  /* FAB — hide on mobile, bottom nav used */
  .fab-group { display: none; }

  /* Mobile Bottom Nav */
  .mobile-bottom-nav {
    display: flex !important;
    align-items: stretch;
  }

  body { padding-bottom: 70px; }

  /* Page Hero */
  .page-hero { padding: 130px 18px 60px; }
  .page-hero .section-title { font-size: 34px; }

  /* Flower grid */
  .flower-items-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .section-title { font-size: 26px; }
  .cta-title { font-size: 24px; }
  .google-trust-badge { flex-direction: column; text-align: center; }
  .flower-items-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ADDITIONAL STYLES v2
   ============================================================ */

/* Nav — Online Sipariş ince çerçeveli buton */
.nav-order-btn {
  border: 1.5px solid rgba(212,106,131,0.45) !important;
  color: var(--primary) !important;
  padding: 9px 20px !important;
  border-radius: 30px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  background: transparent !important;
  transition: var(--transition) !important;
  display: inline-block !important;
}
.nav-order-btn:hover {
  background: rgba(212,106,131,0.09) !important;
  border-color: var(--primary) !important;
}

/* CTA bölümü için beyaz outline buton */
.btn-outline-white {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.8);
  color: #ffffff !important;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.25);
  border-color: #ffffff;
  transform: translateY(-3px);
  color: #ffffff !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

/* ── Hero: brushed card (frameless) ── */
.hero-img-card--brushed {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  position: relative;
}

/* ── Hero: fırça darbesi mask efekti ── */
.hero-main-img {
  border-radius: 0;
  width: 100%;
  height: 430px;
  object-fit: cover;
  -webkit-mask-image:
    radial-gradient(ellipse 84% 88% at 52% 48%,
      black 42%,
      rgba(0,0,0,0.88) 55%,
      rgba(0,0,0,0.60) 66%,
      rgba(0,0,0,0.28) 77%,
      transparent 90%);
  mask-image:
    radial-gradient(ellipse 84% 88% at 52% 48%,
      black 42%,
      rgba(0,0,0,0.88) 55%,
      rgba(0,0,0,0.60) 66%,
      rgba(0,0,0,0.28) 77%,
      transparent 90%);
  display: block;
}

/* ── Hero: küçük asimetrik yuvarlak resimler ── */
.hero-float-img {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 10px 32px rgba(212,106,131,0.32);
  z-index: 5;
  pointer-events: none;
}
.hero-float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-float-img--1 {
  width: 115px;
  height: 115px;
  top: -22px;
  left: -28px;
  transform: rotate(-9deg);
  animation: floatingCard 6.5s 0.4s ease-in-out infinite;
}
.hero-float-img--2 {
  width: 88px;
  height: 88px;
  bottom: -20px;
  right: -20px;
  transform: rotate(8deg);
  animation: floatingCard 7.5s 1.2s ease-in-out infinite reverse;
}

/* ── Testimonials Slider ── */
.testimonials-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonials-slider-viewport {
  flex: 1;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

/* Slider nav buttons */
.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(212,106,131,0.2);
  background: var(--white);
  color: var(--primary);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
}

/* Slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212,106,131,0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

/* ── Responsive: tablet slider ── */
@media (max-width: 1024px) {
  .testimonials-track .testimonial-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 768px) {
  .testimonials-track .testimonial-card { flex: 0 0 calc(100%); }
  .slider-btn { width: 40px; height: 40px; font-size: 13px; }
  .testimonials-slider-wrapper { gap: 10px; }
  .hero-float-img--1 { width: 82px; height: 82px; top: -14px; left: -14px; }
  .hero-float-img--2 { width: 66px; height: 66px; bottom: -14px; right: -14px; }
  .hero-main-img { height: 300px; }
}

/* ============================================================
   PRODUCTS SHOWCASE — Ana Sayfa Ürün Galerisi
   ============================================================ */

.products-showcase {
  background: var(--white);
  padding: 110px 0;
}

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

.product-card {
  background: var(--bg-creme);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(229,219,240,0.6);
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212,106,131,0.18);
}

.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(212,106,131,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-order-btn {
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(12px);
  transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}

.product-card:hover .product-order-btn { transform: translateY(0); }

.product-order-btn:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
}

.product-order-btn i { color: #25d366; font-size: 16px; }
.product-order-btn:hover i { color: var(--white); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(212,106,131,0.35);
  z-index: 2;
}

.product-badge--new {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
}

.product-info {
  padding: 20px 22px 22px;
}

.product-name {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 7px;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.4;
}

.product-cat {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-cat i { color: var(--primary); font-size: 11px; }

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .product-img-wrap { height: 240px; }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-img-wrap { height: 200px; }
  .products-showcase { padding: 70px 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-img-wrap { height: 240px; }
}

/* ============================================================
   YAPTIGIMIZ İŞLER (PORTFOLIO) GALERİSİ
   ============================================================ */
.portfolio {
  background: var(--bg-creme);
  padding: 110px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border: 1px solid rgba(229, 219, 240, 0.5);
  background: var(--white);
  transition: var(--transition);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 106, 131, 0.25);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 106, 131, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-zoom {
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: scale(0.8);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-zoom {
  transform: scale(1);
}

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

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .portfolio {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

