/*
Theme Name: Uşak Kumaş
Theme URI: https://usakkumas.com
Author: Uşak Kumaş
Description: Su Geçirmez Dış Mekan Kumaşları - Profesyonel Kurumsal Tema
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: usakkumas
*/

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #E85D04;
  --primary-dark: #c94e03;
  --primary-light: #ff7b2e;
  --secondary: #1a1a2e;
  --secondary-fore: #e8e8f0;
  --bg: #ffffff;
  --fg: #1a1a2e;
  --muted: #f4f4f7;
  --muted-fore: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --container: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1280px) { .container { padding: 0 48px; } }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-outline-white {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-lg { padding: 16px 36px; font-size: 16px; height: 56px; }

/* ===================== HEADER ===================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: none;
  gap: 32px;
}
@media (min-width: 768px) { .main-nav { display: flex; align-items: center; } }

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  transition: color .2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .2s;
}
.main-nav a:hover, .main-nav a.current-menu-item { color: var(--primary); }
.main-nav a:hover::after, .main-nav a.current-menu-item::after { transform: scaleX(1); }

.header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) { .header-actions { display: flex; } }

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.header-phone svg { color: var(--primary); }
.header-phone:hover { color: var(--primary); }

/* ===================== MOBILE MENU ===================== */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--fg);
}
@media (min-width: 768px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.5);
}
.mobile-menu.open { display: block; }

.mobile-menu-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: #fff;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--fg);
  font-size: 24px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}

.mobile-nav {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  padding: 12px 8px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--primary); }

.mobile-contact-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.mobile-contact-info svg { color: var(--primary); flex-shrink: 0; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.80);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.80);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }

/* ===================== SECTIONS ===================== */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }

.section-muted { background: var(--muted); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--muted-fore);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===================== SERIES CARDS ===================== */
.series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) { .series-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .series-grid { grid-template-columns: repeat(4, 1fr); } }

.series-card { display: block; }

.series-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.series-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.series-card:hover .series-card-img img { transform: scale(1.05); }
.series-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
  transition: background .3s;
}
.series-card:hover .series-card-img::after { background: rgba(0,0,0,.1); }

.series-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  transition: color .2s;
}
.series-card:hover h3 { color: var(--primary); }

.series-card .spec {
  font-size: .85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}
.series-card .desc { color: var(--muted-fore); font-size: .9rem; }

.section-cta { margin-top: 56px; text-align: center; }

/* ===================== WHY US ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.why-content > p {
  color: var(--muted-fore);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.why-items { display: flex; flex-direction: column; gap: 32px; }

.why-item { display: flex; gap: 20px; }

.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(232, 93, 4, .1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.why-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.why-item p { color: var(--muted-fore); font-size: .95rem; line-height: 1.6; }

.why-img-wrap {
  position: relative;
}
.why-img-wrap .img-frame {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-wrap .img-frame img { width: 100%; height: 100%; object-fit: cover; }

.why-badge {
  position: absolute;
  bottom: -32px; left: -32px;
  background: #fff;
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 640px) {
  .why-badge { bottom: -16px; left: 16px; padding: 16px 20px; }
}
.why-badge .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.why-badge .label { font-size: .85rem; font-weight: 600; color: var(--fg); margin-top: 4px; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: var(--primary);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

.btn-white {
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,.9); }

/* ===================== PAGE HEADER ===================== */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,.90);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
}
.page-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.page-hero-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Simple page header (white) */
.page-title-wrap {
  padding: 64px 0 0;
  max-width: 760px;
}
.page-title-wrap h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.page-title-wrap p {
  color: var(--muted-fore);
  font-size: 1.1rem;
}

/* ===================== PRODUCTS PAGE ===================== */
.products-list { display: flex; flex-direction: column; gap: 96px; padding-bottom: 80px; }

.product-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .product-item { grid-template-columns: 1fr 1fr; } }

.product-item.reverse .product-img { order: 0; }
.product-item.reverse .product-info { order: 1; }
@media (min-width: 1024px) {
  .product-item.reverse .product-img { order: 2; }
  .product-item.reverse .product-info { order: 1; }
}

.product-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.product-img:hover img { transform: scale(1.05); }

.product-info h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.product-info > p {
  color: var(--muted-fore);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.product-specs-group h3 {
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.spec-list { display: flex; flex-direction: column; gap: 10px; }
.spec-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted-fore); font-size: .95rem; }
.spec-list .icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.spec-list .icon-arr { color: rgba(232,93,4,.5); flex-shrink: 0; margin-top: 2px; }

/* ===================== CATEGORIES PAGE ===================== */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 80px;
}
@media (min-width: 768px) { .categories-grid { grid-template-columns: 1fr 1fr; } }

.category-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
}
.category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.category-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.category-card-img img { width: 100%; height: 100%; object-fit: cover; }
.category-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
}
.category-card-title {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.category-card-body { padding: 28px; }
.category-card-body p { color: var(--muted-fore); font-size: .97rem; line-height: 1.7; margin-bottom: 24px; }

.series-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.series-tags h4 { width: 100%; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.series-tag {
  padding: 5px 14px;
  background: rgba(232,93,4,.1);
  color: var(--primary);
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 600;
}

.btn-full { width: 100%; justify-content: space-between; }

/* ===================== SERVICES PAGE ===================== */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding-bottom: 80px;
}
@media (min-width: 768px) { .services-list { grid-template-columns: 1fr 1fr; gap: 48px 64px; } }

.service-item { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 640px) { .service-item { flex-direction: row; } }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(232,93,4,.3);
}

.service-item h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.service-item p { color: var(--muted-fore); font-size: 1rem; line-height: 1.75; }

.services-cta {
  background: var(--muted);
  border-top: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
}
.services-cta h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 24px; }

/* ===================== GALLERY PAGE ===================== */
.gallery-grid {
  columns: 1;
  gap: 16px;
  column-gap: 16px;
  padding-bottom: 80px;
}
@media (min-width: 640px) { .gallery-grid { columns: 2; } }
@media (min-width: 768px) { .gallery-grid { columns: 3; } }
@media (min-width: 1280px) { .gallery-grid { columns: 4; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.gallery-item::after {
  content: 'Büyüt';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 600;
  transition: all .3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after {
  background: rgba(0,0,0,.35);
  color: #fff;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.9);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding-bottom: 80px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(232,93,4,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}

.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.location h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.location p { color: var(--muted-fore); font-size: .95rem; line-height: 1.65; }

.contact-detail { margin-bottom: 16px; }
.contact-detail .label { font-size: .85rem; font-weight: 500; color: var(--muted-fore); margin-bottom: 4px; }
.contact-detail a { font-size: 1.1rem; font-weight: 600; display: block; transition: color .2s; }
.contact-detail a:hover { color: var(--primary); }
.contact-detail .sub { font-size: .85rem; color: var(--muted-fore); margin-top: 2px; }

.hours p { color: var(--muted-fore); font-size: .97rem; margin-bottom: 4px; }

.contact-form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,.06);
}
.contact-form-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; }

.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  background: var(--bg);
  color: var(--fg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,93,4,.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }

.form-notice {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.form-notice.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; display: block; }
.form-notice.error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; display: block; }

/* ===================== FOOTER ===================== */
#site-footer {
  background: var(--secondary);
  color: var(--secondary-fore);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 64px 0;
}
@media (min-width: 640px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; } }

.footer-brand .logo-wrap {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-brand .logo-wrap img {
  height: 60px;
  width: auto;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}
.footer-brand p { color: rgba(232,232,240,.7); font-size: .95rem; max-width: 280px; line-height: 1.6; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(232,93,4,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--primary); color: #fff; }

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(232,232,240,.7);
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-links svg { flex-shrink: 0; color: rgba(232,93,4,.6); }

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item .name-label { font-size: .85rem; color: rgba(232,232,240,.5); }
.footer-contact-item a { color: rgba(232,232,240,.75); font-size: .92rem; transition: color .2s; display: block; }
.footer-contact-item a:hover { color: var(--primary); }

.footer-locations { display: flex; flex-direction: column; gap: 20px; }
.footer-location { display: flex; gap: 12px; align-items: flex-start; }
.footer-location svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-location h4 { font-size: .9rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.footer-location p { color: rgba(232,232,240,.65); font-size: .88rem; line-height: 1.55; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p, .footer-bottom span { color: rgba(232,232,240,.45); font-size: .85rem; }

/* ===================== WHATSAPP BUTTON ===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-btn svg { color: #fff; }

/* ===================== UTILITY ===================== */
.text-center { text-align: center; }
.mt-16 { margin-top: 64px; }

/* SVG Icons inline */
.icon-sm { width: 20px; height: 20px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
