:root {
  --color-bg: #ffffff;
  --color-bg-secondary: #f0f4f8;
  --color-bg-card: #ffffff;
  --color-gold: #1e3a5f;
  --color-gold-light: #2d5280;
  --color-gold-dark: #152a45;
  --color-charcoal: #1e3a5f;
  --color-text: #2c3e50;
  --color-text-muted: #5a6a7a;
  --color-border: #d8e2ec;
  --font-primary: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: none;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.88);
}

.top-bar a:hover {
  color: #ffffff;
}

.top-bar i {
  color: #ffffff;
  margin-right: 6px;
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%) !important;
  backdrop-filter: none;
  padding: 12px 0;
  border-bottom: none;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 12px;
  line-height: 0;
}

.navbar-brand img {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffffff !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.55);
  padding: 8px 10px;
  z-index: 1031;
  touch-action: manipulation;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  outline: 0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

@media (max-width: 991.98px) {
  .navbar {
    z-index: 1030;
  }

  .navbar > .container {
    flex-wrap: wrap;
    align-items: center;
  }

  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
  }

  .navbar-collapse.collapse:not(.show) {
    display: none !important;
  }

  .navbar-collapse.collapse.show {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    margin-top: 12px;
    padding: 8px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--color-gold-dark);
  }

  .navbar-nav {
    width: 100%;
    gap: 2px;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 12px 16px !important;
    text-align: center;
    border-radius: 6px;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: -16px;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  object-fit: cover;
  object-position: center;
  filter: blur(1px);
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.hero-bg-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62) 0%, rgba(240, 244, 248, 0.5) 50%, rgba(255, 255, 255, 0.62) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-gold);
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.hero-logo {
  max-width: 480px;
  width: 100%;
  height: auto;
  background: transparent;
}

/* Buttons */
.btn-gold,
a.btn.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  color: #ffffff !important;
  font-weight: 600;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-gold:hover,
a.btn.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-light) 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.35);
}

.btn-outline-gold,
a.btn.btn-outline-gold {
  background: transparent;
  color: var(--color-gold) !important;
  border: 2px solid var(--color-gold);
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-outline-gold:hover,
a.btn.btn-outline-gold:hover {
  background: var(--color-gold);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 20px auto 0;
}

/* Service Cards */
.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #ffffff;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.page-header--bg {
  overflow: hidden;
  background: var(--color-bg);
}

.page-header--bg::after {
  content: '';
  position: absolute;
  inset: -12px;
  background-image: var(--page-header-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(1px);
  z-index: 0;
}

.page-header--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(240, 244, 248, 0.72) 50%, rgba(255, 255, 255, 0.82) 100%);
  z-index: 1;
  pointer-events: none;
}

.page-header--hakkimizda {
  --page-header-image: url('../images/hakkimizda.jpg');
}

.page-header--calisma-alanlari {
  --page-header-image: url('../images/kanunlar.jpg');
}

.page-header--iletisim {
  --page-header-image: url('../images/iletisim.jpg');
}

.page-header--bg .container {
  position: relative;
  z-index: 2;
}

.page-header:not(.page-header--bg)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(30, 58, 95, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  position: relative;
}

.page-header .breadcrumb {
  justify-content: center;
  background: transparent;
  margin-top: 15px;
  position: relative;
}

.page-header .breadcrumb-item a {
  color: var(--color-gold);
}

.page-header .breadcrumb-item.active {
  color: var(--color-text-muted);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-text-muted);
}

/* Content Box */
.content-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.content-box h3 {
  color: var(--color-gold);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.content-box p {
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

/* Law Cards */
.law-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.law-card:hover {
  border-color: var(--color-gold);
  transform: translateX(5px);
}

.law-card .law-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(30, 58, 95, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.3rem;
}

.law-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.law-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Article Cards */
.article-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.article-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.article-card .article-img {
  height: 180px;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, #e8eef4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-gold);
}

.article-card .article-body {
  padding: 25px;
}

.article-card .article-date {
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.article-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.article-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.article-card .read-more {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-card .read-more:hover {
  color: var(--color-gold-light);
}

/* Team Cards */
.team-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-card .team-img {
  height: 200px;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, #e8eef4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.team-card .team-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 5px;
}

.team-card .title {
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 0;
}

/* Contact */
.contact-cards-row {
  align-items: stretch;
}

.contact-info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.1);
}

@media (hover: hover) and (pointer: fine) {
  .contact-info-card:hover {
    transform: translateY(-4px);
  }
}

.contact-info-card .contact-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(30, 58, 95, 0.18) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.45rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-info-card.contact-whatsapp .contact-card-icon {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(30, 58, 95, 0.18) 100%);
  color: var(--color-gold);
}

.contact-info-card .contact-card-icon .wa-icon {
  width: 1.45rem;
  height: 1.45rem;
}

.contact-info-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.contact-info-card .contact-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 88px;
  margin-bottom: 20px;
}

.contact-info-card .contact-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.65;
  margin: 0;
}

.contact-info-card .contact-card-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 8px 0 0;
  line-height: 1.5;
}

.contact-info-card .contact-card-footer {
  width: 100%;
  margin-top: auto;
  padding-top: 4px;
  position: relative;
  z-index: 2;
}

.contact-info-card .contact-card-footer .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-contact-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.btn-contact-action:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30, 58, 95, 0.3);
}

.btn-contact-action.btn-contact-muted {
  background: var(--color-bg-secondary);
  color: var(--color-gold) !important;
  border: 1px solid var(--color-border);
  cursor: default;
  pointer-events: none;
}

.btn-contact-action .wa-icon {
  width: 1rem;
  height: 1rem;
}

.contact-info-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact-info-card p a {
  color: var(--color-gold);
  font-weight: 600;
}

.contact-info-card p a:hover {
  color: var(--color-gold-light);
}

.content-box .btn-gold {
  color: #ffffff !important;
}

.content-box .btn-gold:hover {
  color: #ffffff !important;
}

.content-box .btn-outline-gold:hover {
  color: #ffffff !important;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff !important;
  border: none;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.kurumsal-logo,
.logo-blend {
  mix-blend-mode: multiply;
  -webkit-mix-blend-mode: multiply;
  background: transparent;
  filter: none;
}

.about-intro-row {
  align-items: center;
}

.about-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.about-logo-col .kurumsal-logo {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.about-text p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .about-logo-col {
    min-height: 100%;
    padding: 40px 24px 40px 0;
  }
}

.footer-brand-logo {
  height: 70px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin-bottom: 20px;
  mix-blend-mode: multiply;
  -webkit-mix-blend-mode: multiply;
}

/* Footer */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 0;
}

.footer h5 {
  color: var(--color-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer p,
.footer a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--color-gold);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li i {
  color: var(--color-gold);
  margin-right: 8px;
  width: 16px;
}

.footer-bottom {
  background: var(--color-bg-secondary);
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  margin-right: 8px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #ffffff;
}

/* Floating Contact Buttons */
@keyframes fabPulse {
  0% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes fabRing {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes fabSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fabShine {
  0% { left: -80%; }
  100% { left: 130%; }
}

.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding: 18px 16px 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f0f4f8 100%);
  border-radius: 20px;
  border: 2px solid var(--color-gold);
  box-shadow:
    0 12px 40px rgba(30, 58, 95, 0.15),
    0 0 0 6px rgba(30, 58, 95, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: fabSlideIn 0.6s ease-out;
}

.floating-contact::before {
  content: 'HEMEN ULAŞIN';
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px dashed rgba(30, 58, 95, 0.2);
}

.floating-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: fabShine 3s ease-in-out infinite;
  pointer-events: none;
}

.floating-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 3px solid #fff;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  z-index: 1;
}

.floating-btn::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-charcoal);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(12px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-btn:hover {
  transform: scale(1.15) translateX(-4px);
  color: #fff;
}

.floating-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #2ee06a 0%, #25d366 50%, #1da851 100%);
  animation: fabPulse 2s ease-out infinite;
  width: 72px;
  height: 72px;
  font-size: 1.85rem;
}

.floating-btn.whatsapp:hover {
  background: linear-gradient(135deg, #3ef078 0%, #25d366 100%);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.floating-btn.phone {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  color: #ffffff;
  animation: fabRing 2.5s ease-in-out infinite;
  animation-delay: 0.3s;
}

.floating-btn.phone:hover {
  background: linear-gradient(135deg, #3a6a9a 0%, var(--color-gold-light) 100%);
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.55);
  color: #ffffff;
}

.floating-btn.map {
  background: linear-gradient(135deg, #5a9cf5 0%, #4285f4 50%, #2b6fd4 100%);
  animation: fabRing 2.5s ease-in-out infinite;
  animation-delay: 0.6s;
}

.floating-btn.map:hover {
  background: linear-gradient(135deg, #6aadff 0%, #4285f4 100%);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.55);
}

/* Mobile Bottom Bar */
.mobile-contact-bar {
  display: none;
  flex-direction: row;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  border-top: 3px solid var(--color-gold);
  z-index: 1000;
  padding: 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
}

.mobile-contact-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 5px 10px;
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-right: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
}

.mobile-contact-bar a:last-child {
  border-right: none;
}

.mobile-contact-bar a i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
}

.mobile-contact-bar a.whatsapp-link i {
  background: linear-gradient(135deg, #2ee06a, #25d366);
  animation: fabPulse 2.5s ease-out infinite;
}

.mobile-contact-bar a.phone-link i {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
  color: #ffffff;
}

.mobile-contact-bar a.map-link i {
  background: linear-gradient(135deg, #5a9cf5, #2b6fd4);
}

.mobile-contact-bar a:not(.whatsapp-link):not(.phone-link):not(.map-link) i {
  background: linear-gradient(135deg, var(--color-charcoal), #444);
}

.mobile-contact-bar a.whatsapp-link {
  color: #1a9e47;
}

.mobile-contact-bar a.phone-link {
  color: var(--color-gold-dark);
}

.mobile-contact-bar a.map-link {
  color: #2b6fd4;
}

.mobile-contact-bar a:active i {
  transform: scale(0.92);
}

.mobile-contact-bar a:hover,
.mobile-contact-bar a:active {
  background: rgba(30, 58, 95, 0.06);
}

/* Stats */
.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-item .label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-text);
}

.cta-section p {
  color: var(--color-text-muted);
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .floating-contact {
    display: none;
  }

  .mobile-contact-bar {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
    text-align: center;
  }

  .hero-logo {
    max-width: 320px;
    margin-bottom: 30px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 50px 0;
  }

  .content-box {
    padding: 25px;
  }

  .navbar-brand img {
    height: 48px;
    max-width: 220px;
  }
}

.article-detail-header {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}

.article-detail-header .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.article-detail-header .article-meta span i {
  color: var(--color-gold);
  margin-right: 6px;
}

.article-detail-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.article-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 30px 0 15px;
}

.article-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 25px 0 12px;
}

.article-content p {
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.article-content ul,
.article-content ol {
  color: var(--color-text-muted);
  margin-bottom: 15px;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 15px 20px;
  margin: 25px 0;
  background: var(--color-bg-secondary);
  border-radius: 0 8px 8px 0;
  color: var(--color-text-muted);
  font-style: italic;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--color-border);
}

.article-tags span {
  background: rgba(30, 58, 95, 0.15);
  color: var(--color-gold);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 15px;
}

@media (max-width: 576px) {
  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar .d-none {
    display: none !important;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 25px 20px;
  }
}


@media (max-width: 991px) {
  .floating-btn.whatsapp,
  .mobile-contact-bar a.whatsapp-link i {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .floating-contact {
    animation: none;
  }
}
