/* ==========================================================================
   Köroğlu Pide & Kebap - Custom Stylesheet
   Theme: Fire & Wood Wood-Fired Oven Craftsmanship (Gold & Ember Accent)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  --primary-color: #d9381e;       /* Woodfire Ember Red */
  --primary-hover: #b82b14;
  --secondary-color: #d4a359;     /* Warm Gold / Baked Crust */
  --secondary-hover: #b88842;
  --dark-bg: #121110;              /* Charcoal / Oven Smoke Dark */
  --dark-surface: #1c1a18;
  --dark-card: #25221f;
  --light-bg: #fcf9f5;
  --light-surface: #ffffff;
  --text-dark: #1a1817;
  --text-muted: #6e6a66;
  --text-light: #f5f2ed;
  --accent-orange: #ff6b35;
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1ebd56;
  --border-color: rgba(212, 163, 89, 0.2);
  --box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 20px 40px rgba(217, 56, 30, 0.15);
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   Global Reset & Base
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--text-dark);
}

.font-heading {
  font-family: var(--font-heading) !important;
}

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

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background: #0d0c0b;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
}

.top-bar a:hover {
  color: var(--secondary-color);
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}

.top-bar-item i {
  color: var(--secondary-color);
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar-custom {
  background-color: rgba(18, 17, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(212, 163, 89, 0.15);
  z-index: 1040;
}

.navbar-custom.scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background-color: rgba(13, 12, 11, 0.98);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(217, 56, 30, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--secondary-color);
  background: rgba(212, 163, 89, 0.08);
}

.btn-header-wa {
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-hover));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  border: none;
}

.btn-header-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  color: #fff !important;
}

.btn-header-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
  border: none;
}

.btn-header-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.45);
  color: #fff !important;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 88vh;
  background-color: #121110;
  background-image: linear-gradient(90deg, #121110 0%, rgba(18, 17, 16, 0.88) 42%, rgba(18, 17, 16, 0.3) 80%, transparent 100%),
                    url('../images/dukkan-dis-gorunus.jpg');
  background-position: right 30px center;
  background-size: auto 90%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 17, 16, 0.25) 0%, rgba(18, 17, 16, 0.85) 100%);
  pointer-events: none;
}

.hero-storefront-card {
  position: relative;
  border-radius: 24px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(212, 163, 89, 0.45), rgba(217, 56, 30, 0.25));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(217, 56, 30, 0.2);
  transition: var(--transition);
}

.hero-storefront-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(212, 163, 89, 0.35);
}

.hero-storefront-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0d0c0b;
}

.hero-storefront-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: var(--transition);
}

.hero-storefront-badge {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 17, 16, 0.9);
  color: var(--secondary-color);
  border: 1px solid rgba(212, 163, 89, 0.4);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 163, 89, 0.15);
  border: 1px solid rgba(212, 163, 89, 0.4);
  color: var(--secondary-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-title span {
  background: linear-gradient(135deg, var(--secondary-color), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin-bottom: 35px;
  font-weight: 400;
  line-height: 1.6;
}

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

.btn-custom-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
  color: #ffffff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(217, 56, 30, 0.4);
  border: none;
}

.btn-custom-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217, 56, 30, 0.55);
}

.btn-custom-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  backdrop-filter: blur(5px);
}

.btn-custom-outline:hover {
  background: #ffffff;
  color: var(--text-dark);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.hero-features-bar {
  margin-top: 60px;
  background: rgba(28, 26, 24, 0.85);
  border: 1px solid rgba(212, 163, 89, 0.25);
  border-radius: 20px;
  padding: 24px 30px;
  backdrop-filter: blur(12px);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 56, 30, 0.2), rgba(212, 163, 89, 0.2));
  border: 1px solid rgba(212, 163, 89, 0.3);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-feature-text h6 {
  color: #ffffff;
  margin-bottom: 2px;
  font-size: 1rem;
}

.hero-feature-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Section Common
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: rgba(217, 56, 30, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 50px;
}

/* --------------------------------------------------------------------------
   Highlights 3-Card Section
   -------------------------------------------------------------------------- */
.highlight-card {
  background: var(--light-surface);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

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

.highlight-card:hover::before {
  height: 6px;
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(217, 56, 30, 0.1), rgba(212, 163, 89, 0.15));
  color: var(--primary-color);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.highlight-card h4 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   About Us Section
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--dark-bg);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 2px solid rgba(212, 163, 89, 0.3);
}

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

.about-img-wrapper:hover .about-img {
  transform: scale(1.04);
}

.about-experience-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-experience-badge i {
  font-size: 2.2rem;
}

.about-experience-badge h5 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.2;
}

.about-content .section-title {
  color: #ffffff;
}

.about-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #ffffff;
}

.about-checklist i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   Lezzet Galerisi (Food Gallery)
   -------------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--light-bg);
}

.gallery-card {
  background: var(--light-surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.06);
}

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

.gallery-img-box {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover .gallery-img-box img {
  transform: scale(1.08);
}

.gallery-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(18, 17, 16, 0.85);
  color: var(--secondary-color);
  border: 1px solid rgba(212, 163, 89, 0.4);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.gallery-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.gallery-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-gallery-wa {
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-hover));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  transition: var(--transition);
}

.btn-gallery-wa:hover {
  background: linear-gradient(135deg, var(--whatsapp-hover), #179b44);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* --------------------------------------------------------------------------
   Contact & Location Section
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--dark-surface);
  color: #ffffff;
}

.contact-section .section-title {
  color: #ffffff;
}

.contact-info-card {
  background: var(--dark-card);
  border: 1px solid rgba(212, 163, 89, 0.2);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(217, 56, 30, 0.3);
}

.contact-details h6 {
  color: var(--secondary-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
  color: #ffffff;
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--secondary-color);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(212, 163, 89, 0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  height: 100%;
  min-height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* Contact Form */
.contact-form-card {
  background: var(--dark-card);
  border: 1px solid rgba(212, 163, 89, 0.2);
  border-radius: 20px;
  padding: 35px;
}

.form-control-custom {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #ffffff;
  padding: 12px 18px;
  font-size: 0.95rem;
}

.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary-color);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 163, 89, 0.15);
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
footer {
  background-color: #0a0908;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--secondary-color);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 35px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

/* MANDATORY KC YAZILIM SIGNATURE AREA */
.kc-signature-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 25px;
  text-align: center;
}

.kc-signature-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.kc-signature-link {
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.kc-signature-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Floating Social Action Buttons (WhatsApp & Instagram)
   -------------------------------------------------------------------------- */
.floating-social-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  z-index: 9999;
}

.floating-social-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.85rem;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.floating-btn-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

.floating-btn-ig:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(220, 39, 67, 0.7);
}

.floating-btn-wa {
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-hover));
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.floating-btn-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

.floating-btn-wa::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp-green);
  opacity: 0.6;
  z-index: -1;
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.floating-action-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-action-tooltip {
  background: rgba(18, 17, 16, 0.92);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  pointer-events: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .navbar-custom {
    padding: 10px 0;
  }
  .navbar-collapse {
    background: #141312;
    padding: 20px;
    border-radius: 16px;
    margin-top: 15px;
    border: 1px solid rgba(212, 163, 89, 0.2);
  }
  .hero-features-bar {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .floating-wa-tooltip {
    display: none;
  }
}
