/* CustomPro Theme — Custom Styles for Elementor */

:root {
  --cp-navy: #0A2540;
  --cp-orange: #FF6B35;
  --cp-warm-bg: #F8F6F3;
  --cp-text: #1a1a2e;
  --cp-text-light: #666;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  height: 72px;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-branding img { height: 42px; width: auto; }
.primary-menu {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-menu li a {
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  color: var(--cp-text);
}
.primary-menu li a:hover { background: #f3f4f6; }
.primary-menu li.current-menu-item a { color: var(--cp-orange); }
.header-cta {
  background: var(--cp-orange);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}
.header-cta:hover { background: #e55a28; color: #fff; }

/* Footer */
.site-footer {
  background: var(--cp-navy);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* WhatsApp Float */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}
.whatsapp-float {
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Elementor Overrides */
.elementor-section.elementor-section-full_width > .elementor-container {
  max-width: 100%;
}
body.elementor-page { padding-top: 0; }

/* Responsive */
@media (max-width: 768px) {
  .header-cta { display: none; }
  .footer-widgets { grid-template-columns: 1fr; }
}
