/* ===== Variables – Turkuaz & Gri palet ===== */
:root {
  --color-primary: #0d9488;
  --color-primary-dark: #0f766e;
  --color-accent: #14b8a6;
  --color-accent-hover: #0d9488;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-bg: #f8fafc;
  --color-white: #fff;
  --color-grey-border: #e2e8f0;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Top bar ===== */
.top-bar {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 8px 0;
  font-size: 0.9rem;
}
.top-bar .container { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar-contact { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.95;
}
.top-link.whatsapp .contact-icon { color: #25d366; }
.top-bar-social { display: flex; align-items: center; gap: 12px; }
.top-social-icon {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 4px;
  border-radius: 4px;
  transition: 0.2s ease;
}
.top-social-icon:hover { color: #fff; opacity: 1; }
.top-bar a {
  color: inherit;
  text-decoration: none;
}
.top-bar a:hover { text-decoration: underline; opacity: 0.9; }
.top-link.whatsapp { color: #25d366; }
@media (max-width: 480px) {
  .top-bar-inner { flex-direction: column; align-items: flex-start; }
  .top-bar-social { margin-left: 0; }
}

/* ===== Header ===== */
.header {
  background: var(--color-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo:hover { text-decoration: none; color: var(--color-primary-dark); }
.logo img {
  max-height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-list > li { position: relative; }
.nav-list a {
  display: block;
  padding: 10px 14px;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-list a:hover { color: var(--color-primary); text-decoration: none; }
.btn-nav {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius);
  margin-left: 8px;
}
.btn-nav:hover { background: var(--color-accent-hover) !important; color: var(--color-white) !important; text-decoration: none; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a { padding: 10px 20px; }

@media (max-width: 992px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 90vw;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list .btn-nav { margin-left: 0; margin-top: 8px; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    margin-top: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .has-dropdown.is-open .dropdown { max-height: 400px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover { background: var(--color-primary-dark); text-decoration: none; color: var(--color-white); }
.btn-light {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-white);
}
.btn-light:hover { background: transparent; color: var(--color-white); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); text-decoration: none; }

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 360px;
  aspect-ratio: 16 / 6.5;
  max-height: 500px;
  overflow: hidden;
  background: var(--color-primary-dark);
}
@supports not (aspect-ratio: 16/6.5) {
  .hero-slider {
    height: 0;
    padding-bottom: 40.625%;
    aspect-ratio: auto;
  }
}
.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300%;
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  min-width: 33.333333%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-primary-dark);
}
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, rgba(15, 118, 110, 0.88) 0%, rgba(13, 148, 136, 0.75) 50%, rgba(0, 0, 0, 0.45) 100%);
}
.hero-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 56px;
  color: var(--color-white);
  z-index: 2;
}
.hero-slide-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-slide-content h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-slide-content p {
  margin: 0 0 24px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  opacity: 0.95;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-slide-content .btn {
  margin: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.hero-slider-btn {
  position: absolute;
  top: 50%;
  margin-top: -24px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: var(--color-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider-btn:hover {
  background: rgba(0,0,0,0.6);
  transform: scale(1.08);
}
.hero-slider-prev { left: 20px; }
.hero-slider-next { right: 20px; }
.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -45px;
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.hero-dot:hover {
  background: rgba(255,255,255,0.5);
}
.hero-dot.active {
  background: var(--color-white);
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 300px;
    height: 55vh;
    max-height: 400px;
  }
  .hero-slide-content { padding: 32px 20px 44px; }
  .hero-slider-btn { width: 40px; height: 40px; margin-top: -20px; font-size: 24px; }
  .hero-slider-prev { left: 12px; }
  .hero-slider-next { right: 12px; }
}

/* ===== Sections ===== */
.section {
  padding: 56px 0;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-primary);
  margin: 0 0 8px;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0 0 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Projects grid ===== */
.section-projects { background: var(--color-bg); padding-bottom: 48px; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.project-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
  color: inherit;
}
.project-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  padding: 16px;
  overflow: hidden;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-image img + span { display: none; }
.project-card h3 {
  margin: 16px 20px 4px;
  font-size: 1.1rem;
  color: var(--color-primary);
}
.project-card p {
  margin: 0 20px 20px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===== Foto Galeri sayfası ===== */
.section-photo-gallery { background: var(--color-bg); padding-bottom: 48px; }
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--color-white);
  transition: var(--transition);
}
.gallery-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.gallery-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.gallery-caption {
  margin: 0;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.4;
}
.gallery-caption strong { color: var(--color-primary); display: block; margin-bottom: 2px; }
.section-projects .photo-gallery-grid { margin-top: 24px; }
@media (max-width: 600px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-item img { height: 160px; }
  .gallery-caption { padding: 8px 10px; font-size: 0.85rem; }
}

/* Foto galeri lightbox pop-up */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 60px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.gallery-lightbox[hidden] {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.gallery-lightbox:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.05);
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.lightbox-caption {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  max-width: 90%;
}
.lightbox-caption + .lightbox-counter { margin-top: 4px; }
.lightbox-counter {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .gallery-lightbox { padding: 40px 16px; }
  .lightbox-prev { left: 8px; width: 44px; height: 44px; font-size: 22px; }
  .lightbox-next { right: 8px; width: 44px; height: 44px; font-size: 22px; }
  .lightbox-close { top: 8px; right: 12px; width: 40px; height: 40px; font-size: 24px; }
}

/* ===== CTA ===== */
.section-cta {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 48px 0;
}
.cta-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-box h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 1.75rem;
}
.cta-box p { margin: 0 0 24px; font-size: 1.05rem; opacity: 0.95; }

/* ===== Services ===== */
.section-services { background: var(--color-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -28px -28px 20px -28px;
  background: var(--color-bg);
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--color-primary);
}
.service-card p {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ===== About ===== */
.section-about {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 56px 0;
}
.about-inner { max-width: 720px; }
.about-text h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 0 0 20px;
}
.about-text p {
  margin: 0 0 16px;
  opacity: 0.95;
  line-height: 1.7;
}
.about-text .btn {
  margin-top: 8px;
  background: var(--color-accent);
  color: var(--color-white);
}
.about-text .btn:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  text-decoration: none;
}

/* ===== Blog ===== */
.section-blog { background: var(--color-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -28px -28px 16px -28px;
  background: var(--color-bg);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card {
  background: var(--color-bg);
  padding: 28px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--color-primary);
}
.blog-card p {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.link-arrow {
  font-weight: 600;
  color: var(--color-primary);
}
.link-arrow:hover { text-decoration: none; }
.link-arrow::after { content: ' →'; }

/* ===== TikTok ===== */
.section-tiktok {
  background: linear-gradient(180deg, var(--color-bg) 0%, #e8f5f4 100%);
  padding: 48px 0 56px;
}
.tiktok-header,
.tiktok-cta-card {
  text-align: center;
  margin-bottom: 0;
}
.tiktok-cta-card .section-title { margin-bottom: 8px; }
.tiktok-cta-card .section-subtitle {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.tiktok-cta-card .tiktok-footer-note { margin-top: 16px; }
.tiktok-header .section-title { margin-bottom: 8px; }
.tiktok-header .section-subtitle {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.btn-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
}
.btn-tiktok:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.tiktok-icon {
  width: 24px;
  height: 24px;
}
/* TikTok slider – son 4 video */
.tiktok-slider {
  position: relative;
  max-width: 420px;
  margin: 0 auto 24px;
}
.tiktok-slider-inner {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.tiktok-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tiktok-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  padding: 0 8px;
  box-sizing: border-box;
}
.tiktok-embed-wrap {
  width: 100%;
  max-width: 355px;
  display: flex;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
}
.tiktok-embed-wrap blockquote.tiktok-embed {
  margin: 0;
  min-height: 520px;
}
.tiktok-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow);
  color: var(--color-primary-dark);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
}
.tiktok-slider-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.tiktok-slider-prev { left: -12px; }
.tiktok-slider-next { right: -12px; }
.tiktok-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.tiktok-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-grey-border);
  cursor: pointer;
  transition: var(--transition);
}
.tiktok-dot.active,
.tiktok-dot:hover {
  background: var(--color-primary);
}
.tiktok-footer-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}
.tiktok-footer-note a {
  font-weight: 600;
  color: var(--color-primary);
}

/* ===== Instagram ===== */
.section-instagram {
  background: var(--color-white);
  padding: 48px 0 56px;
}
.instagram-header,
.instagram-cta-card {
  text-align: center;
  margin-bottom: 0;
}
.instagram-cta-card .section-title { margin-bottom: 8px; }
.instagram-cta-card .section-subtitle {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.instagram-cta-card .instagram-footer-note { margin-top: 16px; }
.instagram-header .section-title { margin-bottom: 8px; }
.instagram-header .section-subtitle {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc2a8d);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
}
.btn-instagram:hover {
  opacity: 0.9;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.instagram-icon {
  width: 24px;
  height: 24px;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 24px;
}
@media (max-width: 640px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
.instagram-tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 2px solid var(--color-grey-border);
}
.instagram-tile:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}
.instagram-tile-placeholder {
  width: 48px;
  height: 48px;
  color: var(--color-text-muted);
}
.instagram-tile-placeholder svg { width: 100%; height: 100%; }
.instagram-footer-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}
.instagram-footer-note a {
  font-weight: 600;
  color: var(--color-primary);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 48px 0 0;
}
.footer a { color: rgba(255,255,255,0.9); }
.footer a:hover { color: var(--color-white); text-decoration: none; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-social .social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  text-decoration: none;
  transition: 0.2s ease;
}
.footer-social .social-icon:hover {
  background: var(--color-white);
  color: var(--color-primary-dark);
  text-decoration: none;
}
.footer-col h4 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col address {
  font-style: normal;
  line-height: 1.7;
}
.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.footer .contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-primary);
  vertical-align: middle;
}
.footer .contact-row a { color: #fff; }
.footer .contact-row a:hover { color: rgba(255,255,255,0.95); text-decoration: underline; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--color-white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 90;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  text-decoration: none;
  color: var(--color-white) !important;
}

/* ===== Page header (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 48px 0;
  text-align: center;
}
.page-header h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2rem;
}
.page-header p {
  margin: 8px 0 0;
  opacity: 0.9;
  font-size: 1rem;
}

/* ===== Content area ===== */
.page-content {
  padding: 48px 0;
  max-width: 800px;
  margin: 0 auto;
}
.page-content h2 {
  font-family: var(--font-serif);
  color: var(--color-primary);
  margin: 32px 0 12px;
  font-size: 1.5rem;
}
.page-content p { margin: 0 0 16px; color: var(--color-text); }
.page-content ul { list-style: disc; padding-left: 24px; margin: 0 0 16px; }
.page-content li { margin-bottom: 6px; }
.page-content .content-image {
  margin: 0 0 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-content .content-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ===== Forms ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius);
  background: var(--color-white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select.form-group-input,
.form-group-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius);
  background: var(--color-white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-actions { margin-top: 24px; }
.form-actions .btn { min-width: 160px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info h2,
.contact-form-wrap h2 { margin-top: 0; }
.contact-info address,
.contact-info p { margin-bottom: 16px; }
.contact-info .contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-info .contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.contact-form-wrap { background: var(--color-bg); padding: 32px; border-radius: var(--radius-lg); }
