/* ==========================================================================
   CLEVER START - MAIN STYLESHEET
   Matching reference layout with exact hero search and 3-column dark footer
   ========================================================================== */

/* 1. CSS Reset & Variables */
:root {
  --primary-orange: #FF5207;
  --primary-orange-hover: #E04400;
  --dark-navy: #071324;
  --footer-bg: #071324;
  --whatsapp-green: #00C853;
  --whatsapp-hover: #00B248;
  --text-dark: #1E293B;
  --text-muted: #555555;
  --border-light: #E5E7EB;
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-main);
  background-color: #FFFFFF;
  color: var(--text-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-font-smoothing: antialiased;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* ==========================================================================
   2. NAVBAR / HEADER
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #4B5563;
  transition: var(--transition);
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--primary-orange);
}

.nav-link-login {
  color: #4B5563;
  font-weight: 500;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.75rem;
  color: var(--text-dark);
}


/* ==========================================================================
   3. HERO SECTION (EXACT MATCH TO REFERENCE SCREENSHOT)
   ========================================================================== */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section {
  padding: 70px 0 80px;
  background: #FFFFFF;
  text-align: center;
  width: 100%;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.highlight-orange {
  color: var(--primary-orange);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 500;
}

/* Single Pill Search Bar Wrapper */
.hero-search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border: 1.5px solid #D1D5DB;
  border-radius: 50px;
  background: #FFFFFF;
  padding: 4px 4px 4px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.hero-search-bar:focus-within {
  border-color: var(--primary-orange);
  box-shadow: 0 4px 20px rgba(255, 82, 7, 0.15);
}

.search-pill-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.05rem;
  color: #1E293B;
  background: transparent;
  padding: 12px 0;
  font-family: inherit;
}

.search-pill-input::placeholder {
  color: #9CA3AF;
}

.search-pill-btn {
  background: linear-gradient(135deg, rgba(255, 82, 7, 0.95) 0%, rgba(224, 68, 0, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 44px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(255, 82, 7, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.search-pill-btn:hover {
  background: linear-gradient(135deg, #FF5207 0%, #E04400 100%);
  box-shadow: 0 12px 30px rgba(255, 82, 7, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}


/* ==========================================================================
   4. FOOTER SECTION (MICRO-COMPACT HEIGHT & SLEEK LAYOUT)
   ========================================================================== */
.footer {
  background-color: var(--footer-bg);
  color: #94A3B8;
  padding-top: 16px;
  font-size: 0.8rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 16px;
  padding-bottom: 12px;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-about-text {
  color: #CBD5E1;
  font-size: 0.8rem;
  line-height: 1.35;
  margin-bottom: 8px;
  max-width: 440px;
}

/* Green WhatsApp / Buy Sale Button in Footer */
.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--whatsapp-green);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: none;
}

.btn-whatsapp-footer:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: none;
  color: #FFFFFF;
}

.btn-whatsapp-footer i {
  font-size: 1rem;
}

/* Contact Info List */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #CBD5E1;
  font-size: 0.8rem;
}

.contact-helpdesk {
  margin-top: 2px;
  color: #94A3B8;
}

.contact-phones {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-email {
  color: #CBD5E1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-email:hover {
  color: var(--primary-orange);
}

/* Social Media Icons */
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.social-icon {
  color: #FFFFFF;
  font-size: 1rem;
  opacity: 0.85;
  transition: var(--transition);
}

.social-icon:hover {
  opacity: 1;
  color: var(--primary-orange);
  transform: translateY(-1px);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-flex {
  text-align: center;
  color: #94A3B8;
  font-size: 0.75rem;
}

.footer-bottom-flex a {
  color: #00A3FF;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-flex a:hover {
  text-decoration: underline;
}


/* ==========================================================================
   5. MODAL SYSTEM STYLES
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 19, 36, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-card-vcard {
  max-width: 460px;
  width: 95%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 0 !important;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  background: #FFFFFF;
}

.modal-card-vcard .modal-close {
  top: 12px;
  right: 14px;
  background: rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 20;
}

.modal-card-vcard .modal-close:hover {
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.8rem;
  color: #94A3B8;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 1.35rem;
  color: var(--dark-navy);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.9rem;
  color: #64748B;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 82, 7, 0.1);
}

.btn-modal-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary-orange);
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 10px;
  transition: var(--transition);
}

.btn-modal-submit:hover {
  background: var(--primary-orange-hover);
}


/* ==========================================================================
   6. TOAST NOTIFICATIONS
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dark-navy);
  color: #FFF;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--primary-orange);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}


/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-search-bar {
    flex-direction: column;
    border-radius: 20px;
    padding: 8px 12px;
    gap: 10px;
  }

  .search-pill-input {
    width: 100%;
    text-align: center;
  }

  .search-pill-btn {
    width: 100%;
    border-radius: 12px;
    padding: 12px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   8. HERO ACTION PILLS & SMART MODALS SYSTEM
   ========================================================================== */
.hero-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.action-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #1E293B;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  cursor: pointer;
}

.action-pill-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-orange);
  border-color: var(--primary-orange);
  box-shadow: 0 10px 25px rgba(255, 82, 7, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.action-pill-btn.whatsapp {
  background: rgba(0, 200, 83, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--whatsapp-green);
  border-color: rgba(0, 200, 83, 0.3);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.action-pill-btn.whatsapp:hover {
  background: linear-gradient(135deg, #00C853 0%, #00B248 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(0, 200, 83, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.action-pill-btn.accent {
  background: rgba(255, 82, 7, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--primary-orange);
  border-color: rgba(255, 82, 7, 0.3);
  box-shadow: 0 6px 20px rgba(255, 82, 7, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.action-pill-btn.accent:hover {
  background: linear-gradient(135deg, #FF5207 0%, #E04400 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(255, 82, 7, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Grid Layouts inside Modals */
.modal-card-lg {
  max-width: 760px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 6px;
}

.service-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary-orange);
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 82, 7, 0.1);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.service-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #071324;
}

.service-card p {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.4;
}

/* Client Actions Grid */
.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.action-card-btn {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  color: #1E293B;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
}

.action-card-btn:hover {
  border-color: var(--primary-orange);
  background: #FFFFFF;
  color: var(--primary-orange);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.action-card-btn i {
  font-size: 1.5rem;
  color: var(--primary-orange);
}

/* Payment & QR Box */
.payment-box, .qr-box {
  text-align: center;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  margin-top: 12px;
}

.qr-code-img {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin: 16px 0;
}

.upi-badge {
  display: inline-block;
  background: #E0F2FE;
  color: #0284C7;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
  z-index: 2000;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1);
  color: #FFFFFF;
}

/* ==========================================================================
   9. STANDALONE DIGITAL BUSINESS CARD (card.html) STYLES
   ========================================================================== */
body.vcard-body {
  background: linear-gradient(135deg, #071324 0%, #0F2038 50%, #172A46 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.vcard-wrapper {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.vcard-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
}

.vcard-header {
  position: relative;
  height: 120px;
  background: linear-gradient(135deg, #FF5207 0%, #E04400 100%);
}

.vcard-logo-box {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: var(--transition);
}

.vcard-logo-box:hover {
  transform: translateX(-50%) scale(1.05);
}

.vcard-logo-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.vcard-profile-info {
  text-align: center;
  padding: 48px 24px 20px;
}

.vcard-title-link {
  display: inline-block;
  color: #071324;
}

.vcard-brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #071324;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vcard-brand-name .link-icon {
  font-size: 1rem;
  color: var(--primary-orange);
}

.vcard-tagline {
  font-size: 0.95rem;
  color: var(--primary-orange);
  font-weight: 600;
}

.vcard-sub-brand {
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 4px;
}

.vcard-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}

.vcard-badge {
  background: #F1F5F9;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Actions Grid */
.vcard-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 20px;
}

.vcard-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
  color: #FFFFFF;
}

.btn-call { background: #007AFF; }
.btn-whatsapp { background: var(--whatsapp-green); }
.btn-email { background: #FF9500; }
.btn-location { background: #E11D48; }

.vcard-btn i { font-size: 1.4rem; }

.vcard-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  color: #FFFFFF;
}

.vcard-main-cta {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vcard-cta-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.vcard-cta-btn.primary {
  background: var(--primary-orange);
  color: #FFFFFF;
}

.vcard-cta-btn.primary:hover {
  background: var(--primary-orange-hover);
}

.vcard-cta-btn.secondary {
  background: #F1F5F9;
  color: #1E293B;
  border: 1px solid #E2E8F0;
}

.vcard-cta-btn.secondary:hover {
  background: #E2E8F0;
}

/* Info List */
.vcard-info-list {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vcard-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 12px 16px;
  border-radius: 14px;
  transition: var(--transition);
}

.vcard-info-item:hover {
  border-color: var(--primary-orange);
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.vcard-info-item .info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 82, 7, 0.1);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.vcard-info-item .info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vcard-info-item .info-label {
  font-size: 0.72rem;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 700;
}

.vcard-info-item .info-val {
  font-size: 0.9rem;
  color: #071324;
  font-weight: 600;
}

.vcard-info-item .arrow {
  color: #94A3B8;
}

/* Social Section */
.vcard-social-section {
  padding: 0 20px 20px;
}

.vcard-social-section h3, .vcard-services-box h3 {
  font-size: 0.9rem;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.vcard-social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: var(--transition);
}

.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-btn.facebook { background: #1877F2; }
.social-btn.linkedin { background: #0A66C2; }
.social-btn.youtube { background: #FF0000; }

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  color: #FFFFFF;
}

/* Services Box */
.vcard-services-box {
  padding: 0 20px 20px;
}

.vcard-services-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vcard-services-pills span {
  background: #F1F5F9;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.vcard-utility-actions {
  padding: 0 20px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.utility-btn {
  padding: 10px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.utility-btn:hover {
  background: #E2E8F0;
  color: var(--primary-orange);
}

/* Glassmorphism Clickable Buttons Grid Layout */
.vcard-glass-buttons-grid {
  padding: 0 20px 20px;
}

.vcard-glass-buttons-grid h3 {
  font-size: 0.85rem;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.glass-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.vcard-grid-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 14px 6px;
  border-radius: 16px;
  color: #FFFFFF !important;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.vcard-grid-btn i {
  font-size: 1.45rem;
  line-height: 1;
}

.vcard-grid-btn span {
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.vcard-grid-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #FFFFFF !important;
}

/* Glassmorphism Color Accents */
.btn-glass-website { background: linear-gradient(135deg, rgba(255, 82, 7, 0.9) 0%, rgba(224, 68, 0, 0.95) 100%); }
.btn-glass-call { background: linear-gradient(135deg, rgba(0, 122, 255, 0.9) 0%, rgba(0, 90, 210, 0.95) 100%); }
.btn-glass-whatsapp { background: linear-gradient(135deg, rgba(0, 200, 83, 0.9) 0%, rgba(0, 168, 68, 0.95) 100%); }
.btn-glass-email { background: linear-gradient(135deg, rgba(255, 149, 0, 0.9) 0%, rgba(220, 120, 0, 0.95) 100%); }
.btn-glass-location { background: linear-gradient(135deg, rgba(225, 29, 72, 0.9) 0%, rgba(190, 18, 55, 0.95) 100%); }
.btn-glass-instagram { background: linear-gradient(135deg, rgba(240, 148, 51, 0.9) 0%, rgba(220, 39, 67, 0.9) 50%, rgba(188, 24, 136, 0.95) 100%); }
.btn-glass-facebook { background: linear-gradient(135deg, rgba(24, 119, 242, 0.9) 0%, rgba(15, 90, 190, 0.95) 100%); }
.btn-glass-linkedin { background: linear-gradient(135deg, rgba(10, 102, 194, 0.9) 0%, rgba(5, 75, 150, 0.95) 100%); }
.btn-glass-youtube { background: linear-gradient(135deg, rgba(255, 0, 0, 0.9) 0%, rgba(200, 0, 0, 0.95) 100%); }

.vcard-footer {
  text-align: center;
  padding: 16px;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  font-size: 0.75rem;
  color: #94A3B8;
}
